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

9 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