Skip to content

Commit

Permalink
add pylint disable to buggy_versions.py
Browse files Browse the repository at this point in the history
  • Loading branch information
0xalpharush committed Mar 29, 2024
1 parent 448d77f commit 613c62b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions scripts/update_buggy_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ def organize_data(json_data):
bugs_by_version = organize_data(bug_data)

with open(Path.cwd() / Path("slither/utils/buggy_versions.py"), "w", encoding="utf-8") as file:
file.write("# pylint: disable=too-many-lines\n")
file.write(f"bugs_by_version = {bugs_by_version}")
1 change: 1 addition & 0 deletions slither/utils/buggy_versions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pylint: disable=too-many-lines
bugs_by_version = {
"0.1.0": [
"DirtyBytesArrayToStorage",
Expand Down

0 comments on commit 613c62b

Please sign in to comment.