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

14 lines
177 B
Python

def func(pos, password):
pass
string = "Hello World"
# OK
func("s3cr3t")
func(1, password=string)
func(pos="s3cr3t", password=string)
# Error
func(1, password="s3cr3t")