Skip to content

Commit

Permalink
fix the tox tool
Browse files Browse the repository at this point in the history
  • Loading branch information
caberos authored and caberos committed Sep 21, 2022
1 parent 24b10cb commit f88c7cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions SoftLayer/CLI/object_storage/credential/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ def get_command(self, ctx, cmd_name):
return getattr(module, 'cli')
except ModuleNotFoundError as ex:
print(ex.name)
return None


# Required to get the sub-sub-sub command to work.
Expand Down
1 change: 1 addition & 0 deletions SoftLayer/CLI/virt/capacity/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def get_command(self, ctx, cmd_name):
return getattr(module, 'cli')
except ModuleNotFoundError as ex:
print(ex.name)
return None


# Required to get the sub-sub-sub command to work.
Expand Down
1 change: 1 addition & 0 deletions SoftLayer/CLI/virt/placementgroup/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def get_command(self, ctx, cmd_name):
return getattr(module, 'cli')
except ModuleNotFoundError as ex:
print(ex.name)
return None


# Required to get the sub-sub-sub command to work.
Expand Down

0 comments on commit f88c7cd

Please sign in to comment.