Skip to content

Commit ea46a8e

Browse files
committed
gitignore
1 parent 929096f commit ea46a8e

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ celerybeat.pid
252252
.venv
253253
env/
254254
venv/
255+
venv*/
255256
ENV/
256257
env.bak/
257258
venv.bak/

evdspy/EVDSlocal/initial/load_commands_cmds_to_load.py

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -381,22 +381,25 @@ def main_exit_function():
381381
...
382382
def menu_display():
383383
funcs = [
384+
("help", help_),
385+
384386
("check setup", check),
385387
("setup", setup),
386-
("create user options file", create_options_file),
387-
("create series file", create_series_file),
388-
("add new series group ", setup_series_steps),
389-
("get data", get),
390-
("get categories (get all series of a datagroup)", get_categories_main), # next version
388+
# ("add new series group ", setup_series_steps),
389+
390+
("Data", get_categories_main), # next version
391+
("(auto) get series from file", get),
391392
# ("get data groups (on development) ", get_datagroups_data_main), # next version
392-
("help", help_),
393393
("show api key", show_apikey),
394394
("save api key to file", set_apikey_input),
395+
("create user options file", create_options_file),
396+
("create series file", create_series_file),
397+
395398
("remove cache folders", remove_cache),
396399
("evdspy as a command line prompt", console_main_from_the_menu),
397-
("version", version),
400+
# ("version", version),
398401
("py version", py_version),
399-
("check compatibility of your python version", check_compat),
402+
# ("check compatibility of your python version", check_compat),
400403
]
401404

402405
menu_items = list(map(lambda x: MenuItem(x[1], x[0]), funcs))
-51.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)