Skip to content

Commit e10b1e6

Browse files
committed
DOC: Standardize API reference pt6
1 parent 507f1da commit e10b1e6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

databento/historical/api/metadata.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,6 @@ def get_shape(
302302
encoding = Encoding(encoding)
303303
stype_in = SType(stype_in)
304304

305-
# Build params list
306305
params: List[Tuple[str, str]] = [
307306
("dataset", dataset),
308307
("symbols", symbols),
@@ -376,10 +375,10 @@ def get_billable_size(
376375
params: List[Tuple[str, str]] = super()._timeseries_params(
377376
dataset=dataset,
378377
symbols=symbols,
379-
schema=Schema(schema),
378+
schema=schema,
380379
start=start,
381380
end=end,
382-
stype_in=SType(stype_in),
381+
stype_in=stype_in,
383382
limit=limit,
384383
)
385384

databento/historical/http.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ def _timeseries_params(
5656
start = maybe_datetime_to_string(start)
5757
end = maybe_datetime_to_string(end)
5858

59-
# Build params list
6059
params: List[Tuple[str, Any]] = [
6160
("dataset", dataset),
6261
("symbols", symbols),

0 commit comments

Comments
 (0)