Skip to content

Commit

Permalink
comment out debug accounts list
Browse files Browse the repository at this point in the history
  • Loading branch information
nplse committed Sep 23, 2020
1 parent 252ee56 commit 5ab6b59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def report_cost(context, event):
while True:
for account in response['Accounts']:
if searchterm is None or searchterm in account['Name'].lower():
print('{Id} {Name}'.format(**account))
#print('{Id} {Name}'.format(**account))
accounts.append(account['Id'])
total, this_buffer = cost_report(
account_id=[account['Id']],
Expand Down

0 comments on commit 5ab6b59

Please sign in to comment.