E1120 no-value-for-parameter¶
- Message
'No value for argument %s in %s call'
- Description
Used when a function call passes too few arguments.
Example¶
def fn(a, b, c):
pass
fn(1, 2)
4:0: E1120: No value for argument 'c' in function call
Running Pylint locally? In your CI?
There is a better way! Run PyCodeQual & get Pylint findings with history, diffs and statistics.

Click here to find out more.