ruff/crates/ruff_linter/resources/test/fixtures/flake8_bugbear/B028.py
2023-09-20 08:38:27 +02:00

11 lines
285 B
Python

import warnings
"""
Should emit:
B028 - on lines 8 and 9
"""
warnings.warn(DeprecationWarning("test"))
warnings.warn(DeprecationWarning("test"), source=None)
warnings.warn(DeprecationWarning("test"), source=None, stacklevel=2)
warnings.warn(DeprecationWarning("test"), stacklevel=1)