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(
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
You can’t perform that action at this time.
0 commit comments