Skip to content

Commit

Permalink
corrected static typing
Browse files Browse the repository at this point in the history
  • Loading branch information
hitblast committed Feb 17, 2024
1 parent fcf0398 commit 988d655
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions avro/resources/dictionary.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@


# Import first-party Python modules.
from typing import Dict
from typing import Any, Dict

# The Avro Dictionary, implemented in Python.
DICT: Dict[str, str] = {
DICT: Dict[str, Any] = {
# Metadata.
'meta': {
'file_name': 'dictionary.py',
Expand Down

0 comments on commit 988d655

Please sign in to comment.