Samuel Colvin wrote:
def resolve_annotations(*, raw_annotations: Dict[str, Type[Any]], module_name:
Optional[str]) -> Dict[str, Type[Any]]:
I don't see how anyone can say that would be more
readable with a 80 character line limit.
I would argue that it *is* more readable if it's not all on one line:
def resolve_annotations(*,
raw_annotations: Dict[str, Type[Any]],
module_name: Optional[str])
-> Dict[str, Type[Any]]:
Having thus improved its readability, an 80-char line limit is no
longer a problem.
--
Greg
_______________________________________________
Python-ideas mailing list
Python-ideas@python.org
https://mail.python.org/mailman/listinfo/python-ideas
Code of Conduct: http://python.org/psf/codeofconduct/