Skip to content

Commit

Permalink
fix tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Jun 25, 2024
1 parent fd6c688 commit 68f14ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conda_subprocess/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ def _validate_prefix_name(prefix_name: str, ctx: context, allow_base=True) -> st

else:
envs_dirs = context.envs_dirs
envs_dirs += tuple(
envs_dirs += tuple([
os.path.abspath(os.path.join(os.environ["CONDA_EXE"], "..", "..", "envs"))
)
])
print(envs_dirs)
try:
return _locate_prefix_by_name(name=prefix_name, envs_dirs=envs_dirs)
Expand Down

0 comments on commit 68f14ac

Please sign in to comment.