Skip to content

Commit 6c28d5c

Browse files
author
Max Rozentsveyg
committed
Remove types
1 parent f138062 commit 6c28d5c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

third_party/2and3/boto/utils.pyi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ class AuthSMTPHandler(logging.handlers.SMTPHandler):
140140
class LRUCache(Dict[_KT, _VT]):
141141
class _Item:
142142
previous = ... # type: Optional[LRUCache._Item]
143-
key = ... # type: _KT
144-
value = ... # type: _VT
145-
def __init__(self, key: _KT, value: _VT) -> None: ...
143+
key = ...
144+
value = ...
145+
def __init__(self, key, value) -> None: ...
146146

147147
capacity = ... # type: int
148148
head = ... # type: Optional[LRUCache._Item]

0 commit comments

Comments
 (0)