Any thoughts on how to deal with PyLint errors wit...
# dev-metaflow
c
Any thoughts on how to deal with PyLint errors with metaflow
Parameter
type? Example (in this case using a custom Metaflow parameter):
Copy code
E1101: Instance of 'DatasetParameter' has no 'write' member (no-member)
1
a
Is
DatasetParameter
a new object introduced by your fork?
c
Solved it by adding an abstract base class (ABC) mixin to the Metaflow
DatasetParameter
and the value type.
💯 1