Skip to content

Commit bc79a43

Browse files
committed
removed inquerier from requirements as now it is needed only for CLI
added .fleet to .gitignore
1 parent e89abf6 commit bc79a43

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@
2525
/venv*/
2626
/.idea/
2727
/.vscode/
28+
/.fleet/

easy_toolbox.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# pip requirements:
44
# python ^3.6
5-
# inquirer
5+
# inquirer (only for CLI)
66
#
77
# system:
88
# docker
@@ -17,7 +17,6 @@
1717

1818
import sys
1919
import os
20-
import inquirer
2120

2221

2322
BASE_DOCKER_COMMAND = "OIOIOI_UID=$(id -u) docker-compose" + \
@@ -110,6 +109,7 @@ def get_action_from_args() -> Option:
110109

111110

112111
def get_action_from_cli() -> Option:
112+
import inquirer
113113
questions = [
114114
inquirer.List(
115115
"action",

0 commit comments

Comments
 (0)