Skip to content

Commit 3b7360b

Browse files
committed
appease flake8
1 parent fc9fea3 commit 3b7360b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_provenance.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,10 @@ def test_directory_workflow(tmp_path: Path) -> None:
186186

187187
# Input files should be captured by hash value,
188188
# even if they were inside a class: Directory
189-
for l, l_hash in sha1.items():
189+
for letter, l_hash in sha1.items():
190190
prefix = l_hash[:2] # first 2 letters
191191
p = folder / "data" / prefix / l_hash
192-
assert p.is_file(), f"Could not find {l} as {p}"
192+
assert p.is_file(), f"Could not find {letter} as {p}"
193193

194194

195195
@needs_docker

0 commit comments

Comments
 (0)