Skip to content

Commit 4a9ab22

Browse files
committed
style: fix ruff formatting in hardhat.py
1 parent a40c132 commit 4a9ab22

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crytic_compile/platform/hardhat.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,7 @@ def hardhat_like_parsing(
9797
if "sources" in targets_json:
9898
# Sort sources by ID to ensure correct processing order
9999
sources_with_ids = [
100-
(path, info, info.get("id"))
101-
for path, info in targets_json["sources"].items()
100+
(path, info, info.get("id")) for path, info in targets_json["sources"].items()
102101
]
103102
sources_with_ids.sort(key=lambda x: x[2] if x[2] is not None else float("inf"))
104103

0 commit comments

Comments
 (0)