[Python-ideas] PEP 8 update on line length

Jonathan Fine jfine2358 at gmail.com
Tue Feb 19 10:54:22 EST 2019


<https://github.com/samuelcolvin/pydantic/blob/master/pydantic/utils.py#L246>

def resolve_annotations(raw_annotations: Dict[str, AnyType],
module_name: Optional[str]) -> Dict[str, AnyType]:
        pass

After using https://black.now.sh/

def resolve_annotations(
    raw_annotations: Dict[str, AnyType],
    module_name: Optional[str],
) -> Dict[str, AnyType]:
    pass

-- 
Jonathan


More information about the Python-ideas mailing list