Skip to content

Commit f04fa9b

Browse files
committed
BLD: Add dbz-lib release workflow
1 parent 9087235 commit f04fa9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

databento/common/metadata.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any
1+
from typing import Any, Dict
22

33
from databento.common.parsing import int_to_compression, int_to_schema, int_to_stype
44
from dbz_lib import decode_metadata
@@ -10,7 +10,7 @@ class MetadataDecoder:
1010
"""
1111

1212
@staticmethod
13-
def decode_to_json(raw_metadata: bytes) -> dict[str, Any]:
13+
def decode_to_json(raw_metadata: bytes) -> Dict[str, Any]:
1414
"""
1515
Decode the given metadata into a JSON object (as a Python dict).
1616
@@ -21,7 +21,7 @@ def decode_to_json(raw_metadata: bytes) -> dict[str, Any]:
2121
2222
Returns
2323
-------
24-
dict[str, Any]
24+
Dict[str, Any]
2525
2626
"""
2727

0 commit comments

Comments
 (0)