Skip to content

Commit df5c17a

Browse files
author
Halil Ibrahim Dilsiz
authored
Update binary_stream.py
1 parent 8969860 commit df5c17a

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)