Skip to content

Commit

Permalink
Remove dedundant type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
Schamper committed Nov 27, 2023
1 parent e6edbd7 commit ebd9652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dissect/cstruct/types/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def write(cls, stream: BinaryIO, value: Any) -> int:
"""
return cls._write(stream, value)

def dumps(cls: MetaType, value: Any) -> bytes:
def dumps(cls, value: Any) -> bytes:
"""Dump a value to a byte string.
Args:
Expand Down

0 comments on commit ebd9652

Please sign in to comment.