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 8e05a35 commit 2951d14Copy full SHA for 2951d14
pylsp_mypy/_version.py
@@ -1 +1 @@
1
-__version__ = "0.6.1"
+__version__ = "0.6.2"
pylsp_mypy/plugin.py
@@ -46,7 +46,7 @@
46
# This flag is new in python 3.7
47
# THis flag only exists on Windows
48
windows_flag: Dict[str, int] = (
49
- {"startupinfo": subprocess.CREATE_NO_WINDOW} if os.name == "nt" else {} # type: ignore
+ {"creationflags": subprocess.CREATE_NO_WINDOW} if os.name == "nt" else {} # type: ignore
50
)
51
52
0 commit comments