Skip to content

Commit 026d133

Browse files
committed
docs: comment
1 parent 7deaae1 commit 026d133

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pyais/bit_vector.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class bit_vector:
2626
__slots__ = ("_value", "_length")
2727

2828
def __init__(self, data: bytes, pad: int = 0) -> None:
29+
# Convert bytes into single large integer
2930
value = 0
3031
for byte in data:
3132
value = (value << 6) | _PAYLOAD_ARMOR[byte]

0 commit comments

Comments
 (0)