vscode-rf-language-server icon indicating copy to clipboard operation
vscode-rf-language-server copied to clipboard

Python keywords with return type hint not loaded

Open asaezper opened this issue 4 years ago • 0 comments

Describe the bug If I define a python keyword with a return type hint, it's not loaded.

def custom(param:str):  # Works fine!
    pass

def custom_with_return(param:str) -> str:  # Not recognized 
    pass

Expected behavior Booth functions must be recognized as keywords by the language server.

asaezper avatar Mar 23 '20 09:03 asaezper