Skip to content

Commit beff789

Browse files
committed
Ignore C0116: Missing function or method docstring (missing-function-docstring)
Signed-off-by: Mattt Zmuda <mattt@replicate.com>
1 parent b747cba commit beff789

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

replicate/collection.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ def model(self) -> Model: # pylint: disable=missing-function-docstring
2424
pass
2525

2626
@abc.abstractmethod
27-
def list(self) -> List[Model]:
27+
def list(self) -> List[Model]: # pylint: disable=missing-function-docstring
2828
pass
2929

3030
@abc.abstractmethod
31-
def get(self, key: str) -> Model:
31+
def get(self, key: str) -> Model: # pylint: disable=missing-function-docstring
3232
pass
3333

3434
@abc.abstractmethod
35-
def create(self, **kwargs) -> Model:
35+
def create(self, **kwargs) -> Model: # pylint: disable=missing-function-docstring
3636
pass
3737

3838
def prepare_model(self, attrs: Union[Model, Dict]) -> Model:

0 commit comments

Comments
 (0)