We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e89abf6 commit bc79a43Copy full SHA for bc79a43
.gitignore
@@ -25,3 +25,4 @@
25
/venv*/
26
/.idea/
27
/.vscode/
28
+/.fleet/
easy_toolbox.py
@@ -2,7 +2,7 @@
2
3
# pip requirements:
4
# python ^3.6
5
-# inquirer
+# inquirer (only for CLI)
6
#
7
# system:
8
# docker
@@ -17,7 +17,6 @@
17
18
import sys
19
import os
20
-import inquirer
21
22
23
BASE_DOCKER_COMMAND = "OIOIOI_UID=$(id -u) docker-compose" + \
@@ -110,6 +109,7 @@ def get_action_from_args() -> Option:
110
109
111
112
def get_action_from_cli() -> Option:
+ import inquirer
113
questions = [
114
inquirer.List(
115
"action",
0 commit comments