ruff/crates/ruff_linter/resources/test/fixtures/pyflakes/F811_8.py
2023-09-20 08:38:27 +02:00

8 lines
137 B
Python

"""Test that importing a module twice in a try block does raise a warning."""
try:
import os
import os
except:
pass
os.path