mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
Use unsigned constructor id
This commit is contained in:
parent
5568e65b43
commit
f30746a0b2
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ class Vector(Object):
|
|||
|
||||
def __new__(cls, value: list, t: Object = None) -> bytes:
|
||||
return b"".join(
|
||||
[Int(cls.ID), Int(len(value))]
|
||||
[Int(cls.ID, False), Int(len(value))]
|
||||
+ [
|
||||
t(i) if t
|
||||
else i.write()
|
||||
|
|
|
|||
Loading…
Reference in a new issue