We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b44ac23 commit 4355406Copy full SHA for 4355406
tests/conftest.py
@@ -6,7 +6,7 @@
6
7
def fetch_local_manifest(honor_exclusions: bool = True) -> dict[str, dict[str, str]]:
8
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}
+ sites_iterable: dict[str, dict[str, str]] = {site.name: site.information for site in sites_obj}
10
return sites_iterable
11
12
@pytest.fixture()
0 commit comments