Skip to content

Commit d107a47

Browse files
pre-commit-ci[bot]WhyNotHugo
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e4cc919 commit d107a47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

barcode/writer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def packed(self, line):
189189
"""
190190
line += " "
191191
c = 1
192-
for i in range(0, len(line) - 1):
192+
for i in range(len(line) - 1):
193193
if line[i] == line[i + 1]:
194194
c += 1
195195
else:

0 commit comments

Comments
 (0)