Skip to content

Commit f88c7cd

Browse files
caberoscaberos
caberos
authored and
caberos
committed
fix the tox tool
1 parent 24b10cb commit f88c7cd

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

SoftLayer/CLI/object_storage/credential/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def get_command(self, ctx, cmd_name):
3737
return getattr(module, 'cli')
3838
except ModuleNotFoundError as ex:
3939
print(ex.name)
40+
return None
4041

4142

4243
# Required to get the sub-sub-sub command to work.

SoftLayer/CLI/virt/capacity/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def get_command(self, ctx, cmd_name):
4242
return getattr(module, 'cli')
4343
except ModuleNotFoundError as ex:
4444
print(ex.name)
45+
return None
4546

4647

4748
# Required to get the sub-sub-sub command to work.

SoftLayer/CLI/virt/placementgroup/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def get_command(self, ctx, cmd_name):
4141
return getattr(module, 'cli')
4242
except ModuleNotFoundError as ex:
4343
print(ex.name)
44+
return None
4445

4546

4647
# Required to get the sub-sub-sub command to work.

0 commit comments

Comments
 (0)