We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Otherwise pylint complains (fairly) that Option does not have, for example, "map".
Just add these lines at monad.py:72
def map(self, callback): raise NotImplementedError() def filter(self, callback): raise NotImplementedError() def get_or(self, default): raise NotImplementedError() def get_or_call(self, callback, *args, **kwargs): raise NotImplementedError() def or_else(self, default): raise NotImplementedError() def or_call(self, callback, *args, **kwargs): raise NotImplementedError()
This is a pretty minor issue and somewhat stylistic, so feel free to ignore :) Thanks for the nice library!
The text was updated successfully, but these errors were encountered:
Fixed 6aad4d2 Thanks for reporting!
Sorry, something went wrong.
kachayev
No branches or pull requests
Otherwise pylint complains (fairly) that Option does not have, for example, "map".
Just add these lines at monad.py:72
This is a pretty minor issue and somewhat stylistic, so feel free to ignore :) Thanks for the nice library!
The text was updated successfully, but these errors were encountered: