Skip to content

Commit

Permalink
ignore ruff errors in beta for now
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-p committed Apr 15, 2024
1 parent 1e3797e commit 452d97d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,10 @@ target-version = "py310"
allow-star-arg-any = true
suppress-none-returning = true

[tool.ruff.per-file-ignores]
"src/algokit_utils/beta/*" = ["ERA001", "E501", "PLR0911"]
"path/to/file.py" = ["E402"]

[tool.poe.tasks]
docs = "sphinx-build docs/source docs/html"

Expand Down
2 changes: 1 addition & 1 deletion src/algokit_utils/beta/composer.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ def _build_method_call(

def _build_txn(
self,
txn: TransactionWithSigner | TxnParams | AtomicTransactionComposer, # noqa: PLR0911
txn: TransactionWithSigner | TxnParams | AtomicTransactionComposer,
suggested_params: algosdk.transaction.SuggestedParams,
) -> list[TransactionWithSigner]:
match txn:
Expand Down

0 comments on commit 452d97d

Please sign in to comment.