Skip to content

Commit

Permalink
docs: fix error message (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
tokleine authored Sep 29, 2024
1 parent c6c1067 commit 902e9ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ from existing notebooks. This invocation operates on all ipynb files in the repo
if old_len != len(blob.data):
print(change.blob_id, change.filename, old_len, len(blob.data))
except NotJSONError as e:
print("ERROR", type(e), change.blob_id, filename)
print("ERROR", type(e), change.blob_id, change.filename)
'
```

Expand Down

0 comments on commit 902e9ea

Please sign in to comment.