Skip to content

Commit

Permalink
🩹 fix(setup): fix venv creation question
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeris1One committed Nov 2, 2023
1 parent c915e52 commit 597f76c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,10 @@ def check_libs(verbose=False):


def setup_venv():
opt_venv = input(
"🏗️ Do you want to create a virtual environment?"
opt_venv = ask_user(
"Do you want to create a virtual environment?",
default=True,
emoji="🏗️"
)
if opt_venv:
print("Creating virtual environment...")
Expand Down

0 comments on commit 597f76c

Please sign in to comment.