We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4803fed commit 6af66e1Copy full SHA for 6af66e1
exasol/toolbox/tools/security.py
@@ -117,7 +117,7 @@ def from_json(report_str: str) -> Iterable[Issue]:
117
description=issue["issue_text"],
118
coordinates=issue["filename"].replace(
119
str(PROJECT_CONFIG.root) + "/", ""
120
- ) + f":{str(issue["line_number"])}:{str(issue["col_offset"])}:",
+ ) + ":" + str(issue["line_number"]) + ":" + str(issue["col_offset"]) + ":",
121
references=tuple(references)
122
)
123
0 commit comments