mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Added constructor types for click.FloatRange (#3257)
This commit is contained in:
committed by
Sebastian Rittau
parent
c1ec292344
commit
829c646d69
8
third_party/2and3/click/types.pyi
vendored
8
third_party/2and3/click/types.pyi
vendored
@@ -71,7 +71,13 @@ class FloatParamType(ParamType):
|
||||
|
||||
|
||||
class FloatRange(FloatParamType):
|
||||
...
|
||||
def __init__(
|
||||
self,
|
||||
min: Optional[float] = ...,
|
||||
max: Optional[float] = ...,
|
||||
clamp: bool = ...,
|
||||
) -> None:
|
||||
...
|
||||
|
||||
|
||||
class File(ParamType):
|
||||
|
||||
Reference in New Issue
Block a user