Skip to content

Commit cbb2769

Browse files
author
Elias Werner
committed
make flake8 happy
1 parent 174732b commit cbb2769

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/jumper/kernel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1194,7 +1194,7 @@ async def do_execute(
11941194
allow_stdin,
11951195
cell_id=cell_id,
11961196
)
1197-
except Exception as e:
1197+
except Exception:
11981198
self.cell_output(
11991199
"KernelError: Multicell execution failed.",
12001200
"stderr",

src/jumper/userpersistence.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ def dump_variables(variables_names, globals_, var_dump_, marshaller):
240240
with os.fdopen(os.open(var_dump_, os.O_WRONLY | os.O_CREAT), "wb") as file:
241241
marshaller.dump(user_variables, file)
242242

243+
243244
def load_runtime(
244245
os_environ_, sys_path_, os_environ_dump_, sys_path_dump_, marshaller
245246
):

0 commit comments

Comments
 (0)