Skip to content

Commit 43e8776

Browse files
author
Elias Werner
committed
linter fixes
1 parent e23ebd4 commit 43e8776

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/scorep_jupyter/logging_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66

77
PROJECT_ROOT = Path(__file__).resolve().parent.parent.parent
8-
print(f'{Path(__file__).as_uri()=}')
9-
print(f'{PROJECT_ROOT=}')
8+
print(f"{Path(__file__).as_uri()=}")
9+
print(f"{PROJECT_ROOT=}")
1010
LOGGING_DIR = PROJECT_ROOT / "logs_scorep_jupyter"
1111
os.makedirs(LOGGING_DIR, exist_ok=True)
1212

src/scorep_jupyter/userpersistence.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -501,10 +501,10 @@ def stop(self, done_message="Done."):
501501

502502

503503
def create_busy_spinner(lock=None, stop_event=None, is_multicell_final=False):
504-
505-
is_enabled = str(os.getenv(
506-
"SCOREP_JUPYTER_DISABLE_PROCESSING_ANIMATIONS"
507-
)).lower() not in ["true", "1", "t"]
504+
505+
is_enabled = str(
506+
os.getenv("SCOREP_JUPYTER_DISABLE_PROCESSING_ANIMATIONS")
507+
).lower() not in ["true", "1", "t"]
508508
if is_enabled and not is_multicell_final:
509509
return BusySpinner(lock, stop_event)
510510
else:

0 commit comments

Comments
 (0)