mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:15:12 +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
|