Skip to content

Commit

Permalink
Merge pull request #3 from Vitor-Avila/pylint-fix
Browse files Browse the repository at this point in the history
Fixing pylint issues
  • Loading branch information
Vitor-Avila committed May 9, 2023
2 parents a39b162 + 6d672b7 commit e3df8cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/preset_cli/cli/superset/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def export_assets( # pylint: disable=too-many-locals, too-many-arguments
)


def export_resource( # pylint: disable=too-many-arguments
def export_resource( # pylint: disable=too-many-arguments, too-many-locals
resource_name: str,
requested_ids: Set[int],
root: Path,
Expand Down
2 changes: 1 addition & 1 deletion src/preset_cli/cli/superset/sync/native/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def render_yaml(path: Path, env: Dict[str, Any]) -> Dict[str, Any]:
help="Split imports into individual assets",
)
@click.pass_context
def native( # pylint: disable=too-many-locals, too-many-arguments
def native( # pylint: disable=too-many-locals, too-many-arguments, too-many-branches
ctx: click.core.Context,
directory: str,
option: Tuple[str, ...],
Expand Down

0 comments on commit e3df8cf

Please sign in to comment.