mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
Pylint disabled rule pointless-string-statement is not raising warining anymore - removing (#10975)
This commit is contained in:
@@ -39,11 +39,11 @@ class BaseDAO:
|
||||
"""
|
||||
Child classes need to state the Model class so they don't need to implement basic
|
||||
create, update and delete methods
|
||||
""" # pylint: disable=pointless-string-statement
|
||||
"""
|
||||
base_filter: Optional[BaseFilter] = None
|
||||
"""
|
||||
Child classes can register base filtering to be aplied to all filter methods
|
||||
""" # pylint: disable=pointless-string-statement
|
||||
"""
|
||||
|
||||
@classmethod
|
||||
def find_by_id(cls, model_id: int) -> Model:
|
||||
|
||||
Reference in New Issue
Block a user