mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
fix: remove useless-suppression for pylint (#16696)
This commit is contained in:
@@ -53,7 +53,7 @@ slice_user = Table(
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class Slice( # pylint: disable=too-many-public-methods, too-many-instance-attributes
|
||||
class Slice( # pylint: disable=too-many-public-methods
|
||||
Model, AuditMixinNullable, ImportExportMixin
|
||||
):
|
||||
"""A slice is essentially a report or a view on data"""
|
||||
|
||||
@@ -383,7 +383,7 @@ class ExecuteSqlCommand(BaseCommand):
|
||||
)
|
||||
|
||||
def _create_payload_from_execution_context(
|
||||
# pylint: disable=invalid-name, no-self-use
|
||||
# pylint: disable=invalid-name
|
||||
self,
|
||||
status: SqlJsonExecutionStatus,
|
||||
) -> str:
|
||||
|
||||
Reference in New Issue
Block a user