Skip to content

Commit 68fa92e

Browse files
caberoscaberos
authored andcommitted
fix the tox analysis
1 parent 0567276 commit 68fa92e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

SoftLayer/CLI/hardware/create_options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def cli(env, prices, location=None):
3636
for location_info in options['locations']:
3737
closure = []
3838
for pod in pods:
39-
if ((location_info['key'] in str(pod['name']))):
39+
if location_info['key'] in str(pod['name']):
4040
closure.append(pod['name'])
4141

4242
notes = '-'

SoftLayer/CLI/virt/create_options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def cli(env, vsi_type, prices, location=None):
3737
for location_info in options['locations']:
3838
closure = []
3939
for pod in pods:
40-
if ((location_info['key'] in str(pod['name']))):
40+
if location_info['key'] in str(pod['name']):
4141
closure.append(pod['name'])
4242

4343
notes = '-'

0 commit comments

Comments
 (0)