Skip to content

Commit

Permalink
Merge pull request #189 from knikolla/fix/broken_code
Browse files Browse the repository at this point in the history
Fix incorrect code block split into 2 lines
  • Loading branch information
knikolla authored Feb 5, 2025
2 parents c5002a5 + ba8aae8 commit 4e8e6c7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ def process_invoice_row(allocation, attrs, su_name, rate):
if options['openshift_gb_rate']:
openshift_storage_rate = options['openshift_gb_rate']

logger.info(f'Using storage rate {openstack_storage_rate} (Openstack) and
{openshift_storage_rate} (Openshift) for {options["invoice_month"]}')
logger.info(f'Using storage rate {openstack_storage_rate} (Openstack) and '
f'{openshift_storage_rate} (Openshift) for {options["invoice_month"]}')

logger.info(f'Writing to {options["output"]}.')
with open(options['output'], 'w', newline='') as f:
Expand Down

0 comments on commit 4e8e6c7

Please sign in to comment.