Files
ruff/resources/test/fixtures/S104.py
2022-11-12 12:04:49 -05:00

20 lines
153 B
Python

def func(address):
print(address)
# OK
"OK"
# Error
"0.0.0.0"
'0.0.0.0'
# Error
func("0.0.0.0")
def my_func():
x = "0.0.0.0"
print(x)