Skip to content

Commit 4b4c338

Browse files
committed
Activate mgmtgroup commands.
1 parent 080bc1e commit 4b4c338

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

usr/lib/python3/dist-packages/linuxmusterCli/main.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
check_parents,
2222
quotas,
2323
student,
24-
schoolclass
24+
schoolclass,
25+
mgmtgroup,
2526
)
2627
from typers.format import *
2728
from typing_extensions import Annotated
@@ -73,6 +74,7 @@ def handle(self, record):
7374
app.add_typer(quotas.app, name='quotas')
7475
app.add_typer(student.app, name='student')
7576
app.add_typer(schoolclass.app, name='schoolclass')
77+
app.add_typer(mgmtgroup.app, name='mgmtgroup')
7678

7779
@app.callback()
7880
def output(

usr/lib/python3/dist-packages/linuxmusterCli/typers/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@
1111
from .quotas import *
1212
from .student import *
1313
from .schoolclass import *
14+
from .mgmtgroup import *

0 commit comments

Comments
 (0)