Improve a bunch of __(deep)copy__ methods (#7148)

This commit is contained in:
Alex Waygood
2022-02-06 23:40:44 +00:00
committed by GitHub
parent a62fd92fb0
commit 494481a0ae
6 changed files with 13 additions and 10 deletions
+2 -2
View File
@@ -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: ...