Skip to content

Commit e065b87

Browse files
committed
Fixed lint [skip ci]
1 parent f770ccf commit e065b87

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pgvector/bit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def __init__(self, value: bytes | str | list[bool] | np.ndarray[tuple[int], np.d
1414
length = len(value)
1515

1616
if length % 8 != 0:
17-
value += '0'*(8 - (length % 8))
17+
value += '0' * (8 - (length % 8))
1818

1919
try:
2020
data = int(value, 2).to_bytes(len(value) // 8, byteorder='big')

0 commit comments

Comments
 (0)