Skip to content

Commit 606ef96

Browse files
committed
remove copied doc-strings
1 parent bcc5d78 commit 606ef96

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

redis/asyncio/retry.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ def __init__(
2424
):
2525
super().__init__(backoff, retries, supported_errors)
2626

27-
__init__.__doc__ = AbstractRetry.__init__.__doc__
28-
2927
def __eq__(self, other: Any) -> bool:
3028
if not isinstance(other, Retry):
3129
return NotImplemented

redis/retry.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@ def __init__(
7777
):
7878
super().__init__(backoff, retries, supported_errors)
7979

80-
__init__.__doc__ = AbstractRetry.__init__.__doc__
81-
8280
def __eq__(self, other: Any) -> bool:
8381
if not isinstance(other, Retry):
8482
return NotImplemented

0 commit comments

Comments
 (0)