We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c8968a commit 04f136dCopy full SHA for 04f136d
applications/sam/sam_do.py
@@ -191,7 +191,9 @@ def _displayParamHelp(self, param):
191
"""
192
Display help of the given OFXParameter.
193
194
- paramName = param.getScriptName()
+ paramName = colored.green(param.getScriptName())
195
+ if not param.getSecret() and clintVersion >= '0.3.3':
196
+ paramName.bold = True
197
paramType = param.getParamTypeName()
198
paramHint = param.getHint()
199
paramDefaultValue = None
@@ -256,7 +258,7 @@ def _displayParamHelp(self, param):
256
258
# Print
257
259
with indent(4):
260
puts('{paramName!s:50}: {paramType!s:10}'.format(
- paramName=colored.green(paramName),
261
+ paramName=paramName,
262
paramType=paramType),
263
newline=paramIsChoice)
264
0 commit comments