Skip to content

Commit

Permalink
Fix unpack() signature
Browse files Browse the repository at this point in the history
  • Loading branch information
justinsteven committed Oct 7, 2021
1 parent f00df1e commit ec906ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pwnlib/util/packing.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def pack(number, word_size = None, endianness = None, sign = None, **kwargs):
return b''.join(reversed(out))

@LocalNoarchContext
def unpack(data, word_size = None, endianness = None, sign = None, **kwargs):
def unpack(data, word_size = None, **kwargs):
r"""unpack(data, word_size = None, endianness = None, sign = None, **kwargs) -> int
Packs arbitrary-sized integer.
Expand Down

0 comments on commit ec906ee

Please sign in to comment.