mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 06:42:02 +00:00
8 lines
169 B
Python
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
|