Skip to content

Commit

Permalink
CRAYSAT-1878: Remove unnecessary f-string
Browse files Browse the repository at this point in the history
PyCharm was complaining about this. Make it happy.
  • Loading branch information
haasken-hpe committed Jul 25, 2024
1 parent c40baa3 commit 1123c52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sat/cli/bootsys/cabinet_power.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def do_air_cooled_cabinets_power_off(args):
node_xnames = list(set(river_nodes) - set(river_mgmt_nodes))

if not node_xnames:
LOGGER.info(f'No non-management nodes in air-cooled cabinets to power off.')
LOGGER.info('No non-management nodes in air-cooled cabinets to power off.')
return

LOGGER.info(f'Powering off {len(node_xnames)} non-management nodes in air-cooled cabinets.')
Expand Down

0 comments on commit 1123c52

Please sign in to comment.