Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
betodealmeida committed Mar 18, 2024
1 parent a32c59f commit 34b4792
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion superset/commands/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def populate_owners(owner_ids: Optional[list[int]] = None) -> list[User]:
return populate_owner_list(owner_ids, default_to_user=True)


class UpdateMixin: # pylint: disable=too-few-public-methods
class UpdateMixin:
@staticmethod
def populate_owners(owner_ids: Optional[list[int]] = None) -> list[User]:
"""
Expand Down
2 changes: 0 additions & 2 deletions superset/commands/dataset/create.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
from marshmallow import ValidationError
from sqlalchemy.exc import SQLAlchemyError

from superset import jinja_context
from superset.commands.base import BaseCommand, CreateMixin
from superset.commands.dataset.exceptions import (
DatabaseNotFoundValidationError,
Expand All @@ -35,7 +34,6 @@
from superset.daos.exceptions import DAOCreateFailedError
from superset.exceptions import SupersetSecurityException
from superset.extensions import db, security_manager
from superset.models.core import Database

logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 34b4792

Please sign in to comment.