Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 5, 2023
1 parent 2c3b105 commit aecc21b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion barcode/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def packed(self, line):
"""
line += " "
c = 1
for i in range(0, len(line) - 1):
for i in range(len(line) - 1):
if line[i] == line[i + 1]:
c += 1
else:
Expand Down

0 comments on commit aecc21b

Please sign in to comment.