Skip to content

Commit

Permalink
update example to python3 print syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
pwright authored and kojiromike committed Jun 1, 2024
1 parent e932c94 commit 25b6e76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/examples/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@

reader = DataFileReader(open("/tmp/users.avro", "r"), DatumReader())
for user in reader:
print user
print(user)
reader.close()

0 comments on commit 25b6e76

Please sign in to comment.