mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 14:21:53 +00:00
13 lines
170 B
Python
13 lines
170 B
Python
assert True # S101
|
|
|
|
|
|
def fn():
|
|
x = 1
|
|
assert x == 1 # S101
|
|
assert x == 2 # S101
|
|
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
if TYPE_CHECKING:
|
|
assert True # OK
|