Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Sep 17, 2024
1 parent 105cb34 commit 3bba306
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msgspec/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class Raw(bytes):
@overload
def __new__(cls) -> "Raw": ...
@overload
def __new__(cls, msg: Union[bytes, str]) -> "Raw": ...
def __new__(cls, msg: Union[bytes, str, bytearray, memoryview]) -> "Raw": ...
def copy(self) -> "Raw": ...

class Meta:
Expand Down

0 comments on commit 3bba306

Please sign in to comment.