Skip to content

Commit e2a8184

Browse files
committed
MOD: Maintain neko and fix some ruff lints
1 parent 0069468 commit e2a8184

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

databento/common/dbnstore.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ def __init__(self, source: BytesIO | bytes | IO[bytes]):
227227
@property
228228
def name(self) -> str:
229229
"""
230-
Return the name of the source buffer.
231-
Equivelant to `repr` of the input.
230+
Return the name of the source buffer. Equivalent to `repr` of the
231+
input.
232232
233233
Returns
234234
-------

databento/live/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,8 @@ def gateway(self) -> str | None:
193193
@property
194194
def metadata(self) -> databento_dbn.Metadata | None:
195195
"""
196-
The DBN metadata header for this session, or `None` if the
197-
metadata has not been received yet.
196+
The DBN metadata header for this session, or `None` if the metadata has
197+
not been received yet.
198198
199199
Returns
200200
-------

databento/live/protocol.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@
4141

4242
def chunk(iterable: Iterable[_C], size: int) -> Iterable[tuple[_C, ...]]:
4343
"""
44-
Break an iterable into chunks with a length of
45-
at most `size`.
44+
Break an iterable into chunks with a length of at most `size`.
4645
4746
Parameters
4847
----------

0 commit comments

Comments
 (0)