Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
eshaan-deepsource committed Dec 22, 2023
1 parent 596d163 commit b00bf82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzers/solhint/utils/issue_map_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def get_mapping() -> Dict[str, Dict[str, str]]:
# then generate the mapping only for the new rules
for rule in rules:
if rule.rule_id not in issue_map:
next_code = next(generate_code)
next_code = next(generate_code) # skipcq: PTC-W0063
issue_map[rule.rule_id] = {"issue_code": f"{ISSUE_PREFIX}{next_code}"}

return issue_map
Expand Down

0 comments on commit b00bf82

Please sign in to comment.