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

7 lines
136 B
Python

"""Test that importing a module twice within an if block does raise a warning."""
i = 2
if i == 1:
import os
import os
os.path