mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 14:21:53 +00:00
7 lines
132 B
Python
7 lines
132 B
Python
"""Test that importing a module twice in a try block does not raise a warning."""
|
|
|
|
try:
|
|
import os
|
|
except:
|
|
import os
|
|
os.path
|