tomi / vscode-rf-language-server

VSCode extension to support Robot Framework development
MIT License
53 stars 36 forks source link

Python keywords with return type hint not loaded #80

Open asaezper opened 4 years ago

asaezper commented 4 years ago

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.