q6 commited on
Commit
d9cc270
·
1 Parent(s): 020cf0e
Files changed (1) hide show
  1. Client/main.py +8 -8
Client/main.py CHANGED
@@ -22,24 +22,24 @@ MENU_SECTIONS: Sequence[Tuple[str, Sequence[Tuple[str, str, str]]]] = (
22
  (
23
  "Extract Pixiv",
24
  (
25
- ("5", "Search (all tags)", os.path.join(EXTRACT_DIR, "search.py")),
26
- ("6", "Search (AI only)", os.path.join(EXTRACT_DIR, "ai_search.py")),
27
- ("7", "Search (real only)", os.path.join(EXTRACT_DIR, "real_search.py")),
28
- ("8", "Users", os.path.join(EXTRACT_DIR, "user.py")),
29
  ),
30
  ),
31
  (
32
  "Hunt",
33
  (
34
- ("4", "Hunt", os.path.join(SCRIPTS_DIR, "hunt.py")),
35
  ),
36
  ),
37
  (
38
  "Maintenance",
39
  (
40
- ("1", "Clear text logs", os.path.join(SCRIPTS_DIR, "clear_texts.py")),
41
- ("2", "Clear DB empty rows", os.path.join(SCRIPTS_DIR, "clear_db.py")),
42
- ("3", "Clear images (except Stash)", os.path.join(SCRIPTS_DIR, "clear_images.py")),
43
  ),
44
  ),
45
  )
 
22
  (
23
  "Extract Pixiv",
24
  (
25
+ ("1", "Search (all tags)", os.path.join(EXTRACT_DIR, "search.py")),
26
+ ("2", "Search (AI only)", os.path.join(EXTRACT_DIR, "ai_search.py")),
27
+ ("3", "Search (real only)", os.path.join(EXTRACT_DIR, "real_search.py")),
28
+ ("4", "Users", os.path.join(EXTRACT_DIR, "user.py")),
29
  ),
30
  ),
31
  (
32
  "Hunt",
33
  (
34
+ ("5", "Hunt", os.path.join(SCRIPTS_DIR, "hunt.py")),
35
  ),
36
  ),
37
  (
38
  "Maintenance",
39
  (
40
+ ("6", "Clear text logs", os.path.join(SCRIPTS_DIR, "clear_texts.py")),
41
+ ("7", "Clear DB empty rows", os.path.join(SCRIPTS_DIR, "clear_db.py")),
42
+ ("8", "Clear images (except Stash)", os.path.join(SCRIPTS_DIR, "clear_images.py")),
43
  ),
44
  ),
45
  )