Skip to content

Commit 1e57b6f

Browse files
committed
Updated style [skip ci]
1 parent 892657e commit 1e57b6f

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

pgvector/bit.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ class Bit:
1111
_length: int
1212
_data: bytes
1313

14-
def __init__(self, value: bytes | str | list[bool] | np.ndarray[tuple[int, ...], np.dtype[np.bool | np.uint8]], /) -> None:
14+
def __init__(
15+
self,
16+
value: bytes | str | list[bool] | np.ndarray[tuple[int, ...], np.dtype[np.bool | np.uint8]],
17+
/
18+
) -> None:
1519
if isinstance(value, bytes):
1620
self._length = 8 * len(value)
1721
self._data = value

0 commit comments

Comments
 (0)