ruff/crates/ruff_linter/resources/test/fixtures/pyflakes/F811_8.py

9 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