Skip to content

Commit

Permalink
Fix type checker
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Feb 2, 2024
1 parent e8d7d4e commit fad5c89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions exasol/toolbox/tools/security.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,9 @@ def create(
stdout(format_jsonl(issue_url, issue))

def format_jsonl(issue_url: str, issue: Issue) -> str:
issue = asdict(issue)
issue["url"] = issue_url.strip()
return json.dumps(issue)
issue_json = asdict(issue)
issue_json["url"] = issue_url.strip()
return json.dumps(issue_json)

if __name__ == "__main__":
CLI()

0 comments on commit fad5c89

Please sign in to comment.