Skip to content

Commit

Permalink
Merge pull request #64 from Chia-Network/20240123-clippy
Browse files Browse the repository at this point in the history
New quarter, new clippy
  • Loading branch information
prozacchiwawa authored Jan 24, 2024
2 parents 7e5c441 + a3e81e7 commit d9a25a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/coverage/run_coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def run_coverage_test():
subprocess.check_call(['cargo','test'],env=env)

def is_my_code(desc):
for path in ['.cargo','library/std','src/py','src/classic/bins']:
for path in ['.cargo','library/std','src/py','src/classic/bins','/rustc']:
if path in desc['name']:
return False

Expand Down
2 changes: 1 addition & 1 deletion src/util/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ where
let mut finished_idx = 0;

// Determine what's defined in these bindings.
for (_, item) in items.iter().enumerate() {
for item in items.iter() {
for new_item in item.has.iter() {
possible.insert(new_item.clone());
}
Expand Down

0 comments on commit d9a25a9

Please sign in to comment.