Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
betodealmeida committed Nov 1, 2021
1 parent 13e32dd commit 0ec0b45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion superset/commands/importers/v1/examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def _get_uuids(cls) -> Set[str]:
)

@staticmethod
def _import( # pylint: disable=arguments-differ,too-many-locals
def _import( # pylint: disable=arguments-differ, too-many-locals, too-many-branches
session: Session,
configs: Dict[str, Any],
overwrite: bool = False,
Expand Down
2 changes: 1 addition & 1 deletion superset/examples/world_bank.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
)


def load_world_bank_health_n_pop( # pylint: disable=too-many-locals
def load_world_bank_health_n_pop( # pylint: disable=too-many-locals, too-many-statements
only_metadata: bool = False, force: bool = False, sample: bool = False,
) -> None:
"""Loads the world bank health dataset, slices and a dashboard"""
Expand Down

0 comments on commit 0ec0b45

Please sign in to comment.