solorice/vscodium/extensions/ms-python.python-2022.4.1/pythonFiles/lib/jedilsp/bin/jedi-language-server
2022-04-28 21:17:01 +03:00

9 lines
254 B
Python
Executable File

#!/opt/hostedtoolcache/Python/3.7.12/x64/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from jedi_language_server.cli import cli
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(cli())