We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b747cba commit beff789Copy full SHA for beff789
replicate/collection.py
@@ -24,15 +24,15 @@ def model(self) -> Model: # pylint: disable=missing-function-docstring
24
pass
25
26
@abc.abstractmethod
27
- def list(self) -> List[Model]:
+ def list(self) -> List[Model]: # pylint: disable=missing-function-docstring
28
29
30
31
- def get(self, key: str) -> Model:
+ def get(self, key: str) -> Model: # pylint: disable=missing-function-docstring
32
33
34
35
- def create(self, **kwargs) -> Model:
+ def create(self, **kwargs) -> Model: # pylint: disable=missing-function-docstring
36
37
38
def prepare_model(self, attrs: Union[Model, Dict]) -> Model:
0 commit comments