summaryrefslogtreecommitdiff
path: root/babel/messages/mofile.py
diff options
context:
space:
mode:
Diffstat (limited to 'babel/messages/mofile.py')
-rw-r--r--babel/messages/mofile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/babel/messages/mofile.py b/babel/messages/mofile.py
index a96f059..0a432a7 100644
--- a/babel/messages/mofile.py
+++ b/babel/messages/mofile.py
@@ -55,7 +55,7 @@ def read_mo(fileobj: SupportsRead[bytes]) -> Catalog:
# Now put all messages from the .mo file buffer into the catalog
# dictionary
- for i in range(0, msgcount):
+ for _i in range(msgcount):
mlen, moff = unpack(ii, buf[origidx:origidx + 8])
mend = moff + mlen
tlen, toff = unpack(ii, buf[transidx:transidx + 8])