Skip to content

Commit

Permalink
chore: add missing type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
andylolz committed Aug 12, 2024
1 parent a5266e8 commit 9294038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x_notes/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def to_isoformat(ms_since_epoch: str) -> str:


def load_notes(filepath: str = "output/data/notes.json") -> dict[str, dict[str, Any]]:
notes = {}
notes: dict[str, dict[str, Any]] = {}
try:
with open(filepath) as fh:
noted_tweets = json.load(fh)
Expand Down

0 comments on commit 9294038

Please sign in to comment.