Skip to content

Commit

Permalink
Fix pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeny-stakewise committed Nov 19, 2024
1 parent 624291e commit fa3f8b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sw_utils/execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def set_retry_timeout(self, retry_timeout: int) -> None:
self.retry_timeout = retry_timeout


# pylint: disable-next=too-many-arguments
# pylint: disable-next=too-many-arguments,too-many-positional-arguments
def get_execution_client(
endpoints: list[str],
is_poa: bool = False,
Expand Down
2 changes: 1 addition & 1 deletion sw_utils/ipfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ async def _iter_pins(self) -> AsyncIterator[dict]:
page_number += 1
total_pages = pin_results['totalPages']

# pylint: disable-next=too-many-arguments
# pylint: disable-next=too-many-arguments,too-many-positional-arguments
async def _call(
self,
http_method: str,
Expand Down

0 comments on commit fa3f8b0

Please sign in to comment.