Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VER: Release 0.23.1 #40

Merged
merged 6 commits into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
MOD: Fix client typos
  • Loading branch information
nmacholl committed Oct 30, 2023
commit d72a4ac42e984954f3a9f338c8681d5efde9c9b5
2 changes: 1 addition & 1 deletion databento/common/dbnstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ def from_file(cls, path: PathLike[str] | str) -> DBNStore:
Raises
------
FileNotFoundError
If a non-existant file is specified.
If a non-existent file is specified.
ValueError
If an empty file is specified.

Expand Down
8 changes: 4 additions & 4 deletions databento/common/symbology.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def insert_metadata(self, metadata: Metadata) -> None:
stype_out=stype_out,
)

self._insert_inverval(
self._insert_interval(
instrument_id,
MappingInterval(
start_date=start_date,
Expand Down Expand Up @@ -308,7 +308,7 @@ def insert_symbol_mapping_msg(
else:
symbol = msg.stype_out_symbol

self._insert_inverval(
self._insert_interval(
msg.hd.instrument_id,
MappingInterval(
start_date=pd.Timestamp(start_ts, unit="ns", tz="utc").date(),
Expand Down Expand Up @@ -383,7 +383,7 @@ def insert_json(
stype_out=stype_out,
)

self._insert_inverval(
self._insert_interval(
instrument_id,
MappingInterval(
start_date=start_date,
Expand Down Expand Up @@ -540,7 +540,7 @@ def map_symbols_json(

return out_file_valid

def _insert_inverval(self, instrument_id: int, interval: MappingInterval) -> None:
def _insert_interval(self, instrument_id: int, interval: MappingInterval) -> None:
"""
Insert a SymbolInterval into the map.

Expand Down