Skip to content

Commit a17dbe2

Browse files
authored
changes requested in review
1 parent 07c1015 commit a17dbe2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mypy_ls/plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def pyls_lint(config: Config, workspace: Workspace, document: Document,
168168
"silent"
169169
])
170170

171-
log.info(f"executing mypy args = %s", args)
171+
log.info("executing mypy args = %s", args)
172172
report, errors, _ = mypy_api.run(args)
173173
else:
174174
args = ["run", "--"] + args
@@ -177,7 +177,7 @@ def pyls_lint(config: Config, workspace: Workspace, document: Document,
177177
report, errors, _ = mypy_api.run_dmypy(args)
178178

179179
log.debug("report:\n%s", report)
180-
log.debug("errors: \n" + errors)
180+
log.debug("errors:\n%s", errors)
181181

182182
diagnostics = []
183183
for line in report.splitlines():

0 commit comments

Comments
 (0)