Skip to content

Commit be3f78d

Browse files
committed
fix(conda-forge): annotate for mypy strict
1 parent 462c9f2 commit be3f78d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/release_kit/platforms/registries/conda_forge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def _git(*args: str) -> str:
242242
except Exception:
243243
existing = []
244244
if isinstance(existing, list) and existing:
245-
first = existing[0]
245+
first: object = existing[0]
246246
if isinstance(first, dict):
247247
url = str(first.get("html_url", ""))
248248
return StepOutcome(

0 commit comments

Comments
 (0)