79585160

Date: 2025-04-21 19:08:12
Score: 0.5
Natty:
Report link

This is what pylint warns about:

def f(a=1, *args, **kwargs): 
    pass

f(1, a=1)

Traceback (most recent call last):
    f(1, a=1)
    ~^^^^^^^^
TypeError: f() got multiple values for argument 'a'

Whether this error could happen depends on what circumstances a function used in.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user19315471