Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-luna-valero committed Jul 12, 2024
1 parent 4cd0c55 commit cfd3ff7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fedcloud_vm_monitoring/site_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
import click
import ldap3
import paramiko
from paramiko import SSHException
from dateutil.parser import parse
from fedcloudclient.openstack import fedcloud_openstack
from fedcloudclient.sites import find_endpoint_and_project_id
from ldap3.core.exceptions import LDAPException
from paramiko import SSHException


class SiteMonitorException(Exception):
Expand Down Expand Up @@ -129,7 +129,7 @@ def get_user_email(self, egi_user):
def get_public_ip(self, ip_addresses):
result = ""
for ip in ip_addresses:
if not ip.startswith('192.168') and not ip.startswith('172.16'):
if not ip.startswith("192.168") and not ip.startswith("172.16"):
result = ip
return result

Expand Down

0 comments on commit cfd3ff7

Please sign in to comment.