Adrien
Results
2
comments of
Adrien
Temporary fix to this is to override the default `pformat ` and the `lineWrapWidth`. Overriding only one, will result in the other taking over, as mentioned elsewhere, since the class...
Copied reply from [#60 ](url) ```python preferredWidth = 2000 pp = pprint.PrettyPrinter(width=preferredWidth) ic.configureOutput(argToStringFunction=pp.pformat) ic.lineWrapWidth = preferredWidth ```