Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 6d154d9

Browse files
authored
Merge pull request #808 from evakhoni/fix_qemu
quick fix qemu resize command
2 parents 87b287c + e8187c5 commit 6d154d9

File tree

1 file changed

+2
-6
lines changed
  • packages/jumpstarter-driver-qemu/jumpstarter_driver_qemu

1 file changed

+2
-6
lines changed

packages/jumpstarter-driver-qemu/jumpstarter_driver_qemu/client.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
from jumpstarter_driver_composite.client import CompositeClient
55
from jumpstarter_driver_network.adapters import FabricAdapter, NovncAdapter
66

7-
from jumpstarter.client.decorators import driver_click_group
8-
97

108
class QemuClient(CompositeClient):
119
@property
@@ -43,10 +41,8 @@ def shell(self):
4341
yield conn
4442

4543
def cli(self):
46-
@driver_click_group(self)
47-
def base():
48-
"""QEMU virtual machine operations"""
49-
pass
44+
# Get the base group from CompositeClient which includes all child commands
45+
base = super().cli()
5046

5147
@base.group()
5248
def resize():

0 commit comments

Comments
 (0)