Skip to content

Commit e345bb0

Browse files
committed
Merge remote-tracking branch 'origin/master' into release
2 parents d4cec16 + 610c5a3 commit e345bb0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/kontrol/foundry.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1045,8 +1045,9 @@ def foundry_list(foundry: Foundry) -> list[str]:
10451045
]
10461046

10471047
lines: list[str] = []
1048+
proof_ids = listdir(foundry.proofs_dir) if foundry.proofs_dir.exists() else []
10481049
for method in sorted(all_methods):
1049-
for test_id in listdir(foundry.proofs_dir):
1050+
for test_id in proof_ids:
10501051
test, *_ = test_id.split(':')
10511052
if test == method:
10521053
proof = foundry.get_optional_proof(test_id)

0 commit comments

Comments
 (0)