Skip to content

Commit b3192ee

Browse files
committed
chore: remove unused enumeration in cassette scrubbing
1 parent 0a3a616 commit b3192ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def scrub_data(data: Any, scrubber: Tuple[str, Any]) -> Any:
157157
data[key] = replacement
158158
else:
159159
# Nested scrubbing
160-
for index, item in enumerate(data):
160+
for item in data:
161161
element = data[item]
162162
if isinstance(element, list):
163163
for nested_index, nested_item in enumerate(element):

0 commit comments

Comments
 (0)