From a1d0e17b7fb68e671cb3502a090459cea50722b6 Mon Sep 17 00:00:00 2001 From: Ojas Shelke <> Date: Mon, 27 Oct 2025 13:59:55 +0530 Subject: [PATCH] Fix indentation error in OpenGL import statement The import statement on line 476 had 16 spaces instead of 12, causing incorrect indentation within the try block. This fixes the indentation to align properly with Python syntax standards. --- src/mne_qt_browser/_pg_figure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mne_qt_browser/_pg_figure.py b/src/mne_qt_browser/_pg_figure.py index a5e44738..55476f2a 100644 --- a/src/mne_qt_browser/_pg_figure.py +++ b/src/mne_qt_browser/_pg_figure.py @@ -473,7 +473,7 @@ def __init__(self, **kwargs): if self.mne.use_opengl: try: - import OpenGL + import OpenGL except (ModuleNotFoundError, ImportError) as exc: # On macOS, if use_opengl is True we raise an error because it can lead # to segfaults. If a user really knows what they are doing, they can