Skip to content

Commit 2957354

Browse files
committed
black format
1 parent c83a95d commit 2957354

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pylsp_mypy/plugin.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,9 @@ def pylsp_lint(
231231
if shutil.which("dmypy"):
232232
# dmypy exists on path
233233
# -> use mypy on path
234-
completed_process = subprocess.run(["dmypy", *apply_overrides(args, overrides)], stderr=subprocess.PIPE)
234+
completed_process = subprocess.run(
235+
["dmypy", *apply_overrides(args, overrides)], stderr=subprocess.PIPE
236+
)
235237
_err = completed_process.stderr.decode()
236238
_status = completed_process.returncode
237239
if _status != 0:

0 commit comments

Comments
 (0)