Skip to content

Commit

Permalink
🐛 Another bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatXliner committed May 25, 2024
1 parent 05c3dfa commit 0a42525
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions idae/resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
def get_python_or_exit(
version: str,
console: Console,
use_latest: bool,
use_latest: bool = False,
) -> findpython.PythonVersion:
"""Return a PythonVersion or raise Exit."""
try:
Expand All @@ -32,7 +32,7 @@ def get_python_or_exit(

def get_python(
version: str,
use_latest: bool = True,
use_latest: bool = False,
) -> findpython.PythonVersion | None:
"""Resolve the version string and return a valid Python."""
# Order from latest version to earliest
Expand Down

0 comments on commit 0a42525

Please sign in to comment.