mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-13 11:31:07 +08:00
Consistently use '= ...' for optional parameters.
This commit is contained in:
+1
-1
@@ -4,7 +4,7 @@
|
||||
|
||||
import typing
|
||||
|
||||
def collect(generation: int = -1) -> int: ...
|
||||
def collect(generation: int = ...) -> int: ...
|
||||
def disable() -> None: ...
|
||||
def enable() -> None: ...
|
||||
def isenabled() -> bool: ...
|
||||
|
||||
Reference in New Issue
Block a user