File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,9 @@ def pylsp_lint(
245
245
exit_status = completed_process .returncode
246
246
if exit_status != 0 :
247
247
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 (),
249
251
)
250
252
subprocess .run (["dmypy" , "kill" ], ** windows_flag )
251
253
else :
@@ -254,7 +256,9 @@ def pylsp_lint(
254
256
_ , errors , exit_status = mypy_api .run_dmypy (["status" ])
255
257
if exit_status != 0 :
256
258
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 (),
258
262
)
259
263
mypy_api .run_dmypy (["kill" ])
260
264
You can’t perform that action at this time.
0 commit comments