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 Jan 6, 2024
1 parent 72ae0db commit c9b1dae
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 @@ -92,7 +92,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 c9b1dae

Please sign in to comment.