Hey folks I keep getting: `No value for argument ...
# prefect-community
j
Hey folks I keep getting:
No value for argument 'fn' in function callpylint(no-value-for-parameter)
It happens on lines:
@task(name="Something")
As an error in VScode when working with my flow, any ideas on how to get it to stop showing me that?
j
I believe for your current scope you could add
Copy code
# pylint: disable=no-value-for-parameter
It’s due to pylint not knowing about the decorator being able to edit kwargs for the function. Something like this should work:
Copy code
@task(log_stdout=True)  # pylint: disable=no-value-for-parameter
j
Oh awesome thanks @josh