Skip to content

Commit 9ee3953

Browse files
lint
1 parent dd07c65 commit 9ee3953

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pythonFiles/pyvsc-run-isolated.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
del sys.path[0]
1414
del sys.argv[0]
1515
module = sys.argv[0]
16-
if module.startswith('-'):
16+
if module.startswith("-"):
1717
raise NotImplementedError(sys.argv)
1818
elif module.endswith(".py"):
19-
runpy.run_path(module, run_name='__main__')
19+
runpy.run_path(module, run_name="__main__")
2020
else:
21-
runpy.run_module(module, run_name='__main__', alter_sys=True)
21+
runpy.run_module(module, run_name="__main__", alter_sys=True)

0 commit comments

Comments
 (0)