2 Commits 9e756ac796 ... 7411df60c2

Author SHA1 Message Date
  Maarten van den Berg 7411df60c2 flake: Expose piket-active, piket-migrate 2 months ago
  Maarten van den Berg 209d3a9162 client: Make set-active qt6 2 months ago
2 changed files with 3 additions and 3 deletions
  1. 1 3
      piket_client/set_active.py
  2. 2 0
      pyproject.toml

+ 1 - 3
piket_client/set_active.py

6
 
6
 
7
 # pylint: disable=E0611
7
 # pylint: disable=E0611
8
 from PySide6.QtWidgets import (
8
 from PySide6.QtWidgets import (
9
-    QAction,
10
-    QActionGroup,
11
     QApplication,
9
     QApplication,
12
     QGridLayout,
10
     QGridLayout,
13
     QInputDialog,
11
     QInputDialog,
19
     QToolBar,
17
     QToolBar,
20
     QWidget,
18
     QWidget,
21
 )
19
 )
22
-from PySide6.QtGui import QIcon
20
+from PySide6.QtGui import QIcon, QAction, QActionGroup
23
 from PySide6.QtCore import QObject, QSize, Qt, Signal, Slot
21
 from PySide6.QtCore import QObject, QSize, Qt, Signal, Slot
24
 
22
 
25
 # pylint: enable=E0611
23
 # pylint: enable=E0611

+ 2 - 0
pyproject.toml

28
 piket-client = "piket_client.gui:main"
28
 piket-client = "piket_client.gui:main"
29
 piket-server = "piket_server.run:main"
29
 piket-server = "piket_server.run:main"
30
 piket-seed = "piket_server.seed:main"
30
 piket-seed = "piket_server.seed:main"
31
+piket-active = "piket_client.set_active:main"
32
+piket-migrate = "alembic.__main__:main"
31
 
33
 
32
 [build-system]
34
 [build-system]
33
 requires = ["poetry-core"]
35
 requires = ["poetry-core"]