Skip to content

Commit

Permalink
fix: geth fix
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Sep 17, 2024
1 parent e3432ec commit cdfcba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ape_pm/dependency.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ class PythonDependency(DependencyAPI):
@classmethod
def validate_model(cls, values):
if "name" not in values:
if name := values.get("python") or values.geth("pypi"):
if name := values.get("python") or values.get("pypi"):
values["name"] = name
else:
raise ValueError(
Expand Down

0 comments on commit cdfcba1

Please sign in to comment.