Fix missing argument
This commit is contained in:
parent
dea39b9462
commit
dd1ed6a801
1 changed files with 1 additions and 1 deletions
|
@ -62,4 +62,4 @@ def get_pyenv_global() -> list:
|
||||||
|
|
||||||
def get_pyenv(username: str) -> list:
|
def get_pyenv(username: str) -> list:
|
||||||
"""List of all the python environment available to a user."""
|
"""List of all the python environment available to a user."""
|
||||||
return get_pyenv_user() + get_pyenv_team() + get_pyenv_global()
|
return get_pyenv_user(username) + get_pyenv_team() + get_pyenv_global()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue