Skip to content

Commit c338f42

Browse files
committed
DOC: Python multidocs refresh
1 parent 2d770ad commit c338f42

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

databento/historical/api/symbology.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
from requests import Response
77

8+
from databento.common.enums import Dataset
89
from databento.common.enums import SType
910
from databento.common.parsing import datetime_to_date_string
1011
from databento.common.parsing import optional_date_to_string
@@ -26,13 +27,13 @@ def __init__(self, key: str, gateway: str) -> None:
2627

2728
def resolve(
2829
self,
29-
dataset: str,
30+
dataset: Dataset | str,
3031
symbols: list[str] | str,
3132
stype_in: SType | str,
3233
stype_out: SType | str,
3334
start_date: date | str,
3435
end_date: date | str | None = None,
35-
default_value: str | None = "",
36+
default_value: str = "",
3637
) -> dict[str, Any]:
3738
"""
3839
Request symbology mappings resolution from Databento.

0 commit comments

Comments
 (0)