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:
Eric Traut
2021-04-30 11:21:54 -07:00
committed by GitHub
parent bf7d6f6a27
commit dfad2734aa

View File

@@ -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