Pylint disabled rule pointless-string-statement is not raising warining anymore - removing (#10975)

This commit is contained in:
Kasia Kucharczyk 2020-09-21 17:45:21 +02:00 committed by GitHub
parent 9d7b3536e1
commit 88a671153b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,11 +39,11 @@ class BaseDAO:
""" """
Child classes need to state the Model class so they don't need to implement basic Child classes need to state the Model class so they don't need to implement basic
create, update and delete methods create, update and delete methods
""" # pylint: disable=pointless-string-statement """
base_filter: Optional[BaseFilter] = None base_filter: Optional[BaseFilter] = None
""" """
Child classes can register base filtering to be aplied to all filter methods Child classes can register base filtering to be aplied to all filter methods
""" # pylint: disable=pointless-string-statement """
@classmethod @classmethod
def find_by_id(cls, model_id: int) -> Model: def find_by_id(cls, model_id: int) -> Model: