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

8 lines
169 B
Python

"""Test that importing a module twice using a nested does not issue a warning."""
try:
if True:
if True:
import os
except:
import os
os.path