You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.
Tools like pylint and pycharm inspections warn that these should be overridden, even though the base class isn't an explicit ABC.
Maybe just have default methods that are no-op, i.e., but not sure how that would work for something like create() where the method needs to return an instance of the type..
The text was updated successfully, but these errors were encountered:
This requires the methods to have a default functionality, so:
- list method returns an empty list
- create, update/upsert methods return the object, untouched.
- get and delete methods raise NotFoundError
closes#179
This requires the methods to have a default functionality, so:
- list method returns an empty list
- create, update/upsert methods return the object, untouched.
- get and delete methods raise NotFoundError
closes#179
This requires the methods to have a default functionality, so:
- list method returns an empty list
- create, update/upsert methods return the object, untouched.
- get and delete methods raise NotFoundError
closes#179
Tools like pylint and pycharm inspections warn that these should be overridden, even though the base class isn't an explicit ABC.
Maybe just have default methods that are no-op, i.e., but not sure how that would work for something like
create()
where the method needs to return an instance of the type..The text was updated successfully, but these errors were encountered: