Lint: E222 multiple spaces after operator

This commit is contained in:
Joshua Boniface 2020-11-07 12:10:24 -05:00
parent fad27a7f4d
commit 5b3ee363b2
2 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ def getClusterInformation(zk_conn):
cluster_health_msg.append("Node '{}' in {},{} state".format(node['name'], daemon_state, domain_state))
else:
node_healthy_status[index] = True
node_report_status[index] = daemon_state + ',' + domain_state
node_report_status[index] = daemon_state + ',' + domain_state
# Determinations for VM health
vm_healthy_status = list(range(0, vm_count))

View File

@ -35,7 +35,7 @@ class Logger(object):
fmt_purple = '\033[95m'
fmt_cyan = '\033[96m'
fmt_white = '\033[97m'
fmt_bold = '\033[1m'
fmt_bold = '\033[1m'
fmt_end = '\033[0m'
last_colour = ''