Skip to content

Commit

Permalink
Further restrict return type of sixs_binaries generator
Browse files Browse the repository at this point in the history
  • Loading branch information
brianschubert committed Sep 10, 2023
1 parent feec8da commit de380dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_6s.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pathlib
import re
import subprocess
from collections.abc import Iterable
from collections.abc import Iterator
from typing import Final

import pytest
Expand Down Expand Up @@ -32,7 +32,7 @@
"""


def sixs_binaries() -> Iterable[pathlib.Path]:
def sixs_binaries() -> Iterator[pathlib.Path]:
for version in sixs_bin._SIXS_BINARIES.keys():
yield sixs_bin.get_path(version)

Expand Down

0 comments on commit de380dc

Please sign in to comment.