mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
Add missing 'self'
This commit is contained in:
@@ -22,8 +22,8 @@ def unpack_from(*args, **kwargs) -> tuple:
|
||||
|
||||
|
||||
class Struct(object):
|
||||
def __sizeof__() -> long: ...
|
||||
def pack(*args, **kwargs) -> str: ...
|
||||
def pack_into(*args, **kwargs) -> None: ...
|
||||
def unpack(a) -> tuple: ...
|
||||
def unpack_from(*args, **kwargs) -> tuple: ...
|
||||
def __sizeof__(self) -> long: ...
|
||||
def pack(self, *args, **kwargs) -> str: ...
|
||||
def pack_into(self, *args, **kwargs) -> None: ...
|
||||
def unpack(self, a) -> tuple: ...
|
||||
def unpack_from(self, *args, **kwargs) -> tuple: ...
|
||||
|
||||
Reference in New Issue
Block a user