You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raiseValueError(f"CLI documentation style error: help description for the Report generation flag {name_or_flags} was unexpectedly provided. (Currently, '{help}'.)"
387
+
raiseValueError(
388
+
f"CLI documentation style error: help description for the Report generation flag {name_or_flags} was unexpectedly provided. (Currently, '{help}'.)"
385
389
+" This check is in the code because we assume there's nothing help to say about the report flags."
386
390
+" If you're improving that situation, feel free to remove this check."
387
391
)
388
392
else:
389
393
ifnothelp:
390
-
raiseValueError(f"CLI documentation style error: flag help description for {name_or_flags} must be provided. (Currently, '{help}'.)")
394
+
raiseValueError(
395
+
f"CLI documentation style error: flag help description for {name_or_flags} must be provided. (Currently, '{help}'.)"
396
+
)
391
397
ifhelp[0] !=help[0].upper():
392
-
raiseValueError(f"CLI documentation style error: flag help description for {name_or_flags} must start with a capital letter (or unicameral symbol). (Currently, '{help}'.)")
393
-
ifhelp[-1] =='.':
394
-
raiseValueError(f"CLI documentation style error: flag help description for {name_or_flags} must NOT end with a period. (Currently, '{help}'.)")
398
+
raiseValueError(
399
+
f"CLI documentation style error: flag help description for {name_or_flags} must start with a capital letter (or unicameral symbol). (Currently, '{help}'.)"
400
+
)
401
+
ifhelp[-1] ==".":
402
+
raiseValueError(
403
+
f"CLI documentation style error: flag help description for {name_or_flags} must NOT end with a period. (Currently, '{help}'.)"
0 commit comments