Skip to content

Commit 4355406

Browse files
committed
chore: add typedef
1 parent b44ac23 commit 4355406

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
@@ -6,7 +6,7 @@
66

77
def fetch_local_manifest(honor_exclusions: bool = True) -> dict[str, dict[str, str]]:
88
sites_obj = SitesInformation(data_file_path=os.path.join(os.path.dirname(__file__), "../sherlock_project/resources/data.json"), honor_exclusions=honor_exclusions)
9-
sites_iterable = {site.name: site.information for site in sites_obj}
9+
sites_iterable: dict[str, dict[str, str]] = {site.name: site.information for site in sites_obj}
1010
return sites_iterable
1111

1212
@pytest.fixture()

0 commit comments

Comments
 (0)