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

7 lines
132 B
Python

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