mirror of
https://github.com/vale981/python-docstring-mode
synced 2025-03-05 09:31:43 -05:00
repr is somewhat non-deterministic
This commit is contained in:
parent
bf4c9ed397
commit
1d42dd57a9
1 changed files with 1 additions and 1 deletions
|
@ -577,7 +577,7 @@ def main(argv, indata):
|
||||||
)
|
)
|
||||||
prefix = StringIO()
|
prefix = StringIO()
|
||||||
if namespace.offset is not None:
|
if namespace.offset is not None:
|
||||||
prefix.write(repr(offset))
|
prefix.write("{:d}".format(offset))
|
||||||
prefix.write(" ")
|
prefix.write(" ")
|
||||||
|
|
||||||
output = prefix.getvalue() + io.getvalue()
|
output = prefix.getvalue() + io.getvalue()
|
||||||
|
|
Loading…
Add table
Reference in a new issue