mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-19 23:09:55 +08:00
Improve a bunch of __(deep)copy__ methods (#7148)
This commit is contained in:
@@ -51,5 +51,5 @@ class StripeObject(dict[Any, Any]):
|
||||
@property
|
||||
def stripe_id(self): ...
|
||||
def serialize(self, previous): ...
|
||||
def __copy__(self): ...
|
||||
def __deepcopy__(self, memo): ...
|
||||
def __copy__(self) -> StripeObject: ...
|
||||
def __deepcopy__(self, memo: Any) -> StripeObject: ...
|
||||
|
||||
Reference in New Issue
Block a user