Skip to content

Commit 6adc20e

Browse files
gfursinpgmpablo157321
authored andcommitted
fixing year in copyright
1 parent ede6229 commit 6adc20e

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

Diff for: COPYRIGHT.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021-2023 MLCommons
1+
Copyright (c) 2021-2024 MLCommons
22

33
cTuning foundation and OctoML donated this project to MLCommons to benefit everyone.
44

Diff for: LICENSE.md

+1
Original file line numberDiff line numberDiff line change
@@ -174,3 +174,4 @@
174174
of your accepting any such warranty or additional liability.
175175

176176
END OF TERMS AND CONDITIONS
177+

Diff for: cm-mlops/automation/script/module.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ def _run(self, i):
685685
# Check if has --help
686686
if i.get('help',False):
687687
return utils.call_internal_module(self, __file__, 'module_help', 'print_help', {'meta':meta, 'path':path})
688-
688+
689689
run_state['script_id'] = meta['alias'] + "," + meta['uid']
690690
run_state['script_variation_tags'] = variation_tags
691691

Diff for: cm-mlops/automation/script/module_help.py

+11-2
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,15 @@ def print_help(i):
8686

8787

8888
print ('')
89-
input ('Press Enter to see common flags for all scripts')
89+
x = input ('Would you like to see a Python API with a list of common keys/flags for all scripts including this one (y/N)? ')
9090

91-
return {'return':0}
91+
x = x.strip().lower()
92+
93+
skip_delayed_help = False if x in ['y','yes'] else True
94+
95+
r = {'return':0}
96+
97+
if skip_delayed_help:
98+
r['skip_delayed_help'] = True
99+
100+
return r

0 commit comments

Comments
 (0)