Skip to content

Commit

Permalink
Update lang/py/avro/io.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kojiromike authored Jul 18, 2023
1 parent f7112f4 commit 62e9976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lang/py/avro/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ def read_map(self, writers_schema: avro.schema.MapSchema, readers_schema: avro.s
while block_count != 0:
if block_count < 0:
block_count = -block_count
decoder.read_long()
decoder.skip_long()
for i in range(block_count):
key = decoder.read_utf8()
read_items[key] = self.read_data(writers_schema.values, readers_schema.values, decoder)
Expand Down

0 comments on commit 62e9976

Please sign in to comment.