We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e396111 commit ec88162Copy full SHA for ec88162
2 files changed
CHANGELOG.md
@@ -5,6 +5,9 @@
5
#### Enhancements
6
- Upgraded `databento-dbn` to 0.22.0
7
8
+#### Bug fixes
9
+- Fixed return type hint for `metadata.get_dataset_condition`
10
+
11
#### Breaking changes
12
- Removed support for Python 3.8 due to end of life
13
databento/historical/api/metadata.py
@@ -188,7 +188,7 @@ def get_dataset_condition(
188
dataset: Dataset | str,
189
start_date: date | str | None = None,
190
end_date: date | str | None = None,
191
- ) -> dict[str, Any]:
+ ) -> list[dict[str, str]]:
192
"""
193
Get the per date dataset conditions from Databento.
194
@@ -209,7 +209,7 @@ def get_dataset_condition(
209
210
Returns
211
-------
212
- dict[str, Any]
+ list[dict[str, str]]
213
214
215
params: list[tuple[str, str | None]] = [
0 commit comments