Files
ruff/resources/test/fixtures/pygrep-hooks/PGH002_1.py

16 lines
252 B
Python

import logging
from logging import warn
logging.warn("this is not ok")
log.warn("this is also not ok")
warn("not ok")
def foo():
from logging import warn
def warn():
pass
warn("has been redefined, but we will still report it")