Skip to content

Commit

Permalink
Merge pull request #49 from conda-forge/fix-typing
Browse files Browse the repository at this point in the history
fix: typing backwards compat
  • Loading branch information
beckermr authored Sep 9, 2024
2 parents 850dc3c + 8514144 commit a358ed1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conda_forge_metadata/feedstock_outputs.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import time
from fnmatch import fnmatch
from functools import lru_cache
from typing import Any, TypedDict
from typing import Any, List, TypedDict

import requests
from ruamel.yaml import YAML
Expand Down Expand Up @@ -77,7 +77,7 @@ def fetch_allowed_autoreg_feedstock_globs():


@lru_cache(maxsize=1024)
def package_to_feedstock(name: CondaPackageName, **request_kwargs: Any) -> list[str]:
def package_to_feedstock(name: CondaPackageName, **request_kwargs: Any) -> List[str]:
"""Map a package name to the feedstock name(s).
Parameters
Expand Down

0 comments on commit a358ed1

Please sign in to comment.