mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-22 09:38:50 +08:00
Fixing flake8 E121, E122, E123, E124, E125, E126 errors
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
# Stubs for email.message (Python 3.4)
|
||||
|
||||
from typing import (
|
||||
Optional, Union, Tuple, TypeVar, Generator, Sequence, Iterator, Any
|
||||
)
|
||||
Optional, Union, Tuple, TypeVar, Generator, Sequence, Iterator, Any
|
||||
)
|
||||
import sys
|
||||
from email.charset import Charset
|
||||
from email.errors import MessageDefect
|
||||
|
||||
@@ -28,5 +28,6 @@ def encode_rfc2231(s: str, charset: Optional[str] = ...,
|
||||
language: Optional[str] = ...) -> str: ...
|
||||
def collapse_rfc2231_value(value: _ParamType, errors: str = ...,
|
||||
fallback_charset: str = ...) -> str: ...
|
||||
def decode_params(params: List[Tuple[str, str]]) \
|
||||
-> List[Tuple[str, _ParamType]]: ...
|
||||
def decode_params(
|
||||
params: List[Tuple[str, str]]
|
||||
) -> List[Tuple[str, _ParamType]]: ...
|
||||
|
||||
Reference in New Issue
Block a user