Skip to content

Commit 94050e4

Browse files
committed
Updates per request
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
1 parent 6807f28 commit 94050e4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/showoci/showoci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ def set_parser_arguments(argsList=[]):
343343
result = parser.parse_args(args=argsList)
344344
return result
345345
except:
346-
return False
346+
return None
347347

348348

349349
if len(sys.argv) < 2:

examples/showoci/showoci_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __init__(self, flags):
4141
# initiate service object
4242
self.service = ShowOCIService(flags)
4343

44-
# Initate data list everytime class is instantiated
44+
# Initiate data list everytime class is instantiated
4545
self.data = []
4646

4747
############################################

examples/showoci/showoci_output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2648,7 +2648,7 @@ class ShowOCISummary(object):
26482648
############################################
26492649
def __init__(self):
26502650

2651-
# Initate summary objects everytime class is instantiated
2651+
# Initiate summary objects every time class is instantiated
26522652
self.summary_global_list = []
26532653
self.summary_global_data = []
26542654
self.summary_global_region_total = []

0 commit comments

Comments
 (0)