diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/lsp/python/test.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/lsp/python/test.py b/test/lsp/python/test.py new file mode 100644 index 0000000..7b23309 --- /dev/null +++ b/test/lsp/python/test.py @@ -0,0 +1,10 @@ +def funciton() -> str: + ''' this function does things ''' + print('here') + print('there') + return 'something something' + +funciton() +funciton() +funciton() +funciton() |