mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-21 19:32:13 +08:00
Consistently use '= ...' for optional parameters.
This commit is contained in:
@@ -8,4 +8,4 @@ class HMAC:
|
||||
def hexdigest(self) -> str: ...
|
||||
def copy(self) -> HMAC: ...
|
||||
|
||||
def new(key: str, msg: str = None, digestmod: Any = None) -> HMAC: ...
|
||||
def new(key: str, msg: str = ..., digestmod: Any = ...) -> HMAC: ...
|
||||
|
||||
Reference in New Issue
Block a user