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.
2 parents e1e024f + 821ee25 commit 601fbc5Copy full SHA for 601fbc5
FWCore/ParameterSet/python/Mixins.py
@@ -671,9 +671,10 @@ def dumpPython(self, options=PrintOptions()):
671
if i == 0:
672
if n>nPerLine: result += '\n'+options.indentation()
673
else:
674
- result += ', '
675
if i % nPerLine == 0:
676
- result += '\n'+options.indentation()
+ result += ',\n'+options.indentation()
+ else:
677
+ result += ', '
678
result += self.pythonValueForItem(v,options)
679
if n>nPerLine:
680
options.unindent()
0 commit comments