Skip to content

Commit

Permalink
style: Update small
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuyoshicho committed Jul 27, 2024
1 parent 25e21f7 commit 5f3319f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mypy_to_rdjson/mypy_to_rdjson.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ def mypy_to_rdjson(jsonlines: TextIO):
for json_item in jsonlines.readlines():
mypy_result.append(json.loads(json_item))

# "$schema": "https://raw.githubusercontent.com/reviewdog/reviewdog/master/proto/rdf/jsonschema/DiagnosticResult.json",
rdjson: Dict[str, Any] = {
"source": {"name": "mypy", "url": "https://mypy-lang.org/"},
"source": {
"name": "mypy",
"url": "https://mypy-lang.org/",
},
"severity": "WARNING",
"diagnostics": [],
}
Expand Down

0 comments on commit 5f3319f

Please sign in to comment.