Closed Fogapod closed 2 years ago
def a(_test): pass
This produces warning: a.py:1:7: U101 Unused argument '_test'
a.py:1:7: U101 Unused argument '_test'
This is pretty much a common practice to not raise warnings if argument name starts with underscore
Per the documentation, U101 is produced when an argument starts with an underscore. If you don't want errors for those, ignore U101.
U101
This produces warning:
a.py:1:7: U101 Unused argument '_test'
This is pretty much a common practice to not raise warnings if argument name starts with underscore