We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7574a9d commit 94c386dCopy full SHA for 94c386d
1 file changed
pgvector/bit.py
@@ -25,7 +25,6 @@ def bit_value(v: bool) -> str:
25
value = ''.join([bit_value(v) for v in value])
26
27
length = len(value)
28
-
29
if length % 8 != 0:
30
value += '0' * (8 - (length % 8))
31
0 commit comments