mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
8 lines
145 B
Python
8 lines
145 B
Python
"""Test that importing a module twice in if-else blocks does not raise a warning."""
|
|
|
|
i = 2
|
|
if i == 1:
|
|
import os
|
|
else:
|
|
import os
|
|
os.path
|