Skip to content

Commit c43a094

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 300f54f commit c43a094

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/test_terminal.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,10 @@ def test_shell_command_override(
276276
pytest.importorskip("traitlets", minversion=min_traitlets)
277277
argv = shlex.split(f"--ServerApp.terminado_settings={terminado_settings}")
278278
app = jp_configurable_serverapp(argv=argv)
279-
if os.name == 'nt':
280-
assert app.web_app.settings["terminal_manager"].shell_command in (expected_shell, ' '.join(expected_shell))
279+
if os.name == "nt":
280+
assert app.web_app.settings["terminal_manager"].shell_command in (
281+
expected_shell,
282+
" ".join(expected_shell),
283+
)
281284
else:
282285
assert app.web_app.settings["terminal_manager"].shell_command == expected_shell

0 commit comments

Comments
 (0)