You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if""notinsys.path: # Python 3.6 seems to have removed the special entry "" (the cwd) from sys.path
78
-
sys.path.append("")
78
+
# Placing it first overrides installed unpythonic with the local one when running tests
79
+
# (the installed one won't have the "test" submodules).
80
+
sys.path.insert(0, "")
79
81
80
82
# path should be folder containing something.py if we are being run as "pydialect something.py" (script_mode=True), and cwd if run as "pydialect -m something"
0 commit comments