Skip to content

Commit ae88f1d

Browse files
committed
black reformat
1 parent 2e5bfb9 commit ae88f1d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pylsp_mypy/plugin.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,9 @@ def pylsp_lint(
245245
exit_status = completed_process.returncode
246246
if exit_status != 0:
247247
log.info(
248-
"restarting dmypy from status: %s message: %s via path", exit_status, errors.strip()
248+
"restarting dmypy from status: %s message: %s via path",
249+
exit_status,
250+
errors.strip(),
249251
)
250252
subprocess.run(["dmypy", "kill"], **windows_flag)
251253
else:
@@ -254,7 +256,9 @@ def pylsp_lint(
254256
_, errors, exit_status = mypy_api.run_dmypy(["status"])
255257
if exit_status != 0:
256258
log.info(
257-
"restarting dmypy from status: %s message: %s via api", exit_status, errors.strip()
259+
"restarting dmypy from status: %s message: %s via api",
260+
exit_status,
261+
errors.strip(),
258262
)
259263
mypy_api.run_dmypy(["kill"])
260264

0 commit comments

Comments
 (0)