Skip to content

Commit

Permalink
Pass {} for globals to fix it...
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky committed Oct 1, 2020
1 parent a6f1d6f commit 6f4cd50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_stubs.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ def test_files(filename):
path = os.path.join(TESTS_DIR, filename)
with open(path, 'r') as f:
code = f.read()
exec(compile(code, filename, 'exec'))
exec(compile(code, filename, 'exec'), {})

0 comments on commit 6f4cd50

Please sign in to comment.