Skip to content

Commit 8dd413e

Browse files
authored
Add _is_debugger so load_dotenv will work in pdb (#553)
1 parent 9acba4a commit 8dd413e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/dotenv/main.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,10 @@ def _is_interactive():
292292
return False
293293
return not hasattr(main, "__file__")
294294

295-
if usecwd or _is_interactive() or getattr(sys, "frozen", False):
295+
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):
296299
# Should work without __file__, e.g. in REPL or IPython notebook.
297300
path = os.getcwd()
298301
else:

0 commit comments

Comments
 (0)