We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9acba4a commit 8dd413eCopy full SHA for 8dd413e
src/dotenv/main.py
@@ -292,7 +292,10 @@ def _is_interactive():
292
return False
293
return not hasattr(main, "__file__")
294
295
- if usecwd or _is_interactive() or getattr(sys, "frozen", False):
+ def _is_debugger():
296
+ return sys.gettrace() is not None
297
+
298
+ if usecwd or _is_interactive() or _is_debugger() or getattr(sys, "frozen", False):
299
# Should work without __file__, e.g. in REPL or IPython notebook.
300
path = os.getcwd()
301
else:
0 commit comments