Skip to content

Commit

Permalink
remove no longer needed conversion to int
Browse files Browse the repository at this point in the history
  • Loading branch information
ilanschnell committed May 21, 2021
1 parent c87f1d5 commit c38927e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bitarray/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def pprint(a, stream=None, group=8, indent=4, width=80):
stream.write('\n%s' % (indent * ' '))
if i % group == 0 and i % epl != 0:
stream.write(' ')
stream.write(str(int(b)))
stream.write(str(b))

if multiline:
stream.write('\n')
Expand Down

0 comments on commit c38927e

Please sign in to comment.