Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-luna-valero committed Oct 30, 2024
1 parent 59eb282 commit afc8f79
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion fedcloud_vm_monitoring/site_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,10 @@ def check_unused_floating_ips(self):
result = self._run_command(command)
floating_ips_down = [fip["Floating IP Address"] for fip in result]
if len(floating_ips_down) > 0:
click.secho("[-] WARNING List of unused floating IPs: {}".format(floating_ips_down) ,fg="yellow")
click.secho(
"[-] WARNING List of unused floating IPs: {}".format(floating_ips_down),
fg="yellow",
)

def vo_check(self):
endpoint, _, _ = find_endpoint_and_project_id(self.site, self.vo)
Expand Down

0 comments on commit afc8f79

Please sign in to comment.