mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Fixed the type declaration for all_errors in ftplib.pyi. It is supposed to be a variable, not a type alias. (#5271)
Co-authored-by: Eric Traut <erictr@microsoft.com>
This commit is contained in:
@@ -22,7 +22,7 @@ class error_temp(Error): ...
|
||||
class error_perm(Error): ...
|
||||
class error_proto(Error): ...
|
||||
|
||||
all_errors = Tuple[Type[Exception], ...]
|
||||
all_errors: Tuple[Type[Exception], ...]
|
||||
|
||||
class FTP:
|
||||
debugging: int
|
||||
|
||||
Reference in New Issue
Block a user