Skip to content

Commit

Permalink
Updates per request
Browse files Browse the repository at this point in the history
Two updates per request from owner.

Changed return False to return None in the showoci.set_parter_arguments routine
Fixed typos/spelling errors in Initiate comments
  • Loading branch information
stevario committed Apr 5, 2022
1 parent 6807f28 commit 94050e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/showoci/showoci.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ def set_parser_arguments(argsList=[]):
result = parser.parse_args(args=argsList)
return result
except:
return False
return None


if len(sys.argv) < 2:
Expand Down
2 changes: 1 addition & 1 deletion examples/showoci/showoci_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(self, flags):
# initiate service object
self.service = ShowOCIService(flags)

# Initate data list everytime class is instantiated
# Initiate data list everytime class is instantiated
self.data = []

############################################
Expand Down
2 changes: 1 addition & 1 deletion examples/showoci/showoci_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -2648,7 +2648,7 @@ class ShowOCISummary(object):
############################################
def __init__(self):

# Initate summary objects everytime class is instantiated
# Initiate summary objects every time class is instantiated
self.summary_global_list = []
self.summary_global_data = []
self.summary_global_region_total = []
Expand Down

0 comments on commit 94050e4

Please sign in to comment.