intellij-postfix-templates icon indicating copy to clipboard operation
intellij-postfix-templates copied to clipboard

Implement typed templates in Python if specified

Open de-odex opened this issue 5 years ago • 0 comments

Specified within supported docstrings (google-style, numpy-style or epydoc-style): docstring specifications: epydoc, numpy, and google

or when static type checking is indicated:

import typing
def test(arg_one: int, arg_two: str, arg_three: typing.List[int]):
    a_number: int = 0

more info about the typing library here

de-odex avatar Mar 02 '19 15:03 de-odex