Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
bram-vdberg committed Jan 15, 2025
1 parent 3339dfb commit 56244a5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Binary file removed src/fetch/.transfer_file.py.swp
Binary file not shown.
15 changes: 8 additions & 7 deletions src/fetch/transfer_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def dashboard_url(period: AccountingPeriod, config: AccountingConfig) -> str:
return base + urllib.parse.quote_plus(slug + query, safe="=&?")


def manual_propose( #pylint: disable=too-many-arguments, too-many-positional-arguments
def manual_propose( # pylint: disable=too-many-arguments, too-many-positional-arguments
transfers: list[Transfer],
period: AccountingPeriod,
config: AccountingConfig,
Expand Down Expand Up @@ -220,12 +220,13 @@ def main() -> None:
# https://stackoverflow.com/questions/59808346/python-3-slack-client-ssl-sslcertverificationerror
ssl=ssl_context,
)
manual_propose(transfers=payout_transfers,
period=dune.period,
config=config,
send_to_slack=args.send_to_slack,
slack_client=slack_client,
log_saver_obj=log_saver,
manual_propose(
transfers=payout_transfers,
period=dune.period,
config=config,
send_to_slack=args.send_to_slack,
slack_client=slack_client,
log_saver_obj=log_saver,
)
else:
manual_propose(transfers=payout_transfers, period=dune.period, config=config)
Expand Down

0 comments on commit 56244a5

Please sign in to comment.