From c38927e8e3d553265a15f81ccd3656ba760cf129 Mon Sep 17 00:00:00 2001 From: Ilan Schnell Date: Thu, 20 May 2021 23:40:38 -0500 Subject: [PATCH] remove no longer needed conversion to int --- bitarray/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitarray/util.py b/bitarray/util.py index 746e2c7c..8f55cbaf 100644 --- a/bitarray/util.py +++ b/bitarray/util.py @@ -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')