Skip to content

Commit

Permalink
correct flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Richardk2n committed Jul 2, 2022
1 parent 8e05a35 commit 2951d14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pylsp_mypy/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.1"
__version__ = "0.6.2"
2 changes: 1 addition & 1 deletion pylsp_mypy/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
# This flag is new in python 3.7
# THis flag only exists on Windows
windows_flag: Dict[str, int] = (
{"startupinfo": subprocess.CREATE_NO_WINDOW} if os.name == "nt" else {} # type: ignore
{"creationflags": subprocess.CREATE_NO_WINDOW} if os.name == "nt" else {} # type: ignore
)


Expand Down

0 comments on commit 2951d14

Please sign in to comment.