We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f57323e commit 1c5062fCopy full SHA for 1c5062f
.gitignore
@@ -3,6 +3,13 @@ __pycache__/
3
*.py[cod]
4
*$py.class
5
6
+# IntelliJ
7
+*.iml
8
+*.ipr
9
+*.iws
10
+.idea/
11
+out/
12
+
13
# C extensions
14
*.so
15
@@ -45,6 +52,7 @@ coverage.xml
45
52
*,cover
46
53
.hypothesis/
47
54
pytest.xml
55
+.pytest_cache/
48
56
49
57
# Translations
50
58
*.mo
pyls/python_ls.py
@@ -28,7 +28,7 @@ def setup(self):
28
self.delegate = self.DELEGATE_CLASS(self.rfile, self.wfile)
29
30
def handle(self):
31
- self.delegate.handle()
+ self.delegate.start()
32
33
34
def start_tcp_lang_server(bind_addr, port, handler_class):
0 commit comments