Skip to content

Commit

Permalink
fix: style, no need for else
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickAlphaC committed Sep 11, 2024
1 parent 265e838 commit 160c8c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gaboon/commands/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ def classify_dependency(dependency: str) -> DependencyType:

if re.match(github_pattern, dependency):
return DependencyType.GITHUB
else:
return DependencyType.PIP

return DependencyType.PIP


# Much of this code thanks to brownie
Expand Down

0 comments on commit 160c8c6

Please sign in to comment.