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