Skip to content

Commit

Permalink
chore: ruff error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
negar-abbasi committed Jul 31, 2024
1 parent b181267 commit 815667a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/algokit/cli/tasks/mint.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def _validate_supply_for_nft(context: click.Context, param: click.Parameter, val
total = context.params.get("total")
decimals = context.params.get("decimals")
if total is not None and decimals is not None:
_validate_supply(total, decimals)
_validate_supply(total, decimals)
except click.ClickException as ex:
raise ex
return value
Expand Down Expand Up @@ -248,7 +248,7 @@ def mint( # noqa: PLR0913
mutable: bool,
network: AlgorandNetwork,
account: Account | None,
non_fungible: bool, # noqa: ARG001
non_fungible: bool, # noqa: ARG001
) -> None:
if account is not None:
creator_account = account
Expand Down

0 comments on commit 815667a

Please sign in to comment.