Skip to content

Commit 2951d14

Browse files
committed
correct flag
1 parent 8e05a35 commit 2951d14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pylsp_mypy/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.6.1"
1+
__version__ = "0.6.2"

pylsp_mypy/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
# This flag is new in python 3.7
4747
# THis flag only exists on Windows
4848
windows_flag: Dict[str, int] = (
49-
{"startupinfo": subprocess.CREATE_NO_WINDOW} if os.name == "nt" else {} # type: ignore
49+
{"creationflags": subprocess.CREATE_NO_WINDOW} if os.name == "nt" else {} # type: ignore
5050
)
5151

5252

0 commit comments

Comments
 (0)