Skip to content

Commit

Permalink
Remove the now unnecessary conversion to an iterator
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHodson committed Oct 3, 2024
1 parent 95e3cc5 commit d72a3a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_pyfdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def test_archival_read():
request["param"] = "138"
print("")
print("direct function, updated dictionary:", request)
it = iter(pyfdb.list(request, True, True))
it = pyfdb.list(request, True, True)

el = next(it)
assert el["path"]
Expand Down

0 comments on commit d72a3a5

Please sign in to comment.