mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
11 lines
174 B
Python
11 lines
174 B
Python
"""Test that straight `__future__` imports are considered unused."""
|
|
|
|
|
|
def f():
|
|
import __future__
|
|
|
|
|
|
def f():
|
|
import __future__
|
|
|
|
print(__future__.absolute_import)
|