Skip to content

Commit e2c8ad7

Browse files
committed
Fix up tox
1 parent a57397c commit e2c8ad7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

os_capacity/api_test.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def _check_images(self, conn):
5050
)
5151
image_count.add_metric([conn.current_project_id], len(images))
5252
return [image_count]
53-
53+
5454
def _check_volumes(self, conn):
5555
for i in range(RETRY_COUNT):
5656
volumes = list(conn.block_storage.volumes())
@@ -61,7 +61,7 @@ def _check_volumes(self, conn):
6161
)
6262
volume_count.add_metric([conn.current_project_id], len(volumes))
6363
return [volume_count]
64-
64+
6565
def _check_ironic(self, conn):
6666
for i in range(RETRY_COUNT):
6767
nodes = list(conn.bare_metal.nodes())
@@ -72,7 +72,7 @@ def _check_ironic(self, conn):
7272
)
7373
ironic_node_count.add_metric([conn.current_project_id], len(nodes))
7474
return [ironic_node_count]
75-
75+
7676
def _check_identity(self, conn):
7777
user = conn.current_user_id
7878
for i in range(RETRY_COUNT):
@@ -84,7 +84,7 @@ def _check_identity(self, conn):
8484
)
8585
project_count.add_metric([conn.current_project_id], len(projects))
8686
return [project_count]
87-
87+
8888
def _check_network(self, conn):
8989
for i in range(RETRY_COUNT):
9090
networks = list(conn.network.networks())
@@ -104,7 +104,7 @@ def _check_network(self, conn):
104104
)
105105
port_count.add_metric([conn.current_project_id], len(ports))
106106
return [network_count, port_count]
107-
107+
108108
def _check_load_balancer(self, conn):
109109
for i in range(RETRY_COUNT):
110110
lbs = list(conn.load_balancer.load_balancers())

0 commit comments

Comments
 (0)