Skip to content

Commit

Permalink
style: make flake8 happy this time
Browse files Browse the repository at this point in the history
  • Loading branch information
pkazmier committed Jul 3, 2024
1 parent 9971780 commit 3438955
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/awsrun/commands/aws/list_lambdas.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def regional_execute(self, session, acct, region):
total = len(by_role[role])
public = len([fn for fn in by_role[role] if _is_public(fn)])
print(
f"{acct}/{region}: role={role} total={total} private={total-public} public={public}",
f"{acct}/{region}: role={role} total={total} private={total - public} public={public}",
file=out,
)

Expand Down

0 comments on commit 3438955

Please sign in to comment.