Skip to content

Commit c1da221

Browse files
authored
Merge pull request #1 from goulag0/patch-1
Update binary_stream.py
2 parents 8969860 + df5c17a commit c1da221

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

binary_utils/binary_stream.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333

3434
class binary_stream:
3535
def __init__(self, data: bytes = b"", pos: int = 0) -> None:
36-
self.data = data
37-
self.pos = pos
36+
self.data: bytes = data
37+
self.pos: int = pos
3838

3939
def read(self, size: int) -> bytes:
4040
self.pos += size

0 commit comments

Comments
 (0)