This commit is contained in:
ge
2023-07-29 15:35:36 +03:00
parent 3ac1cf5404
commit a0344b703f
10 changed files with 19 additions and 24 deletions

View File

@ -21,8 +21,7 @@ import libvirt
from docopt import docopt
from ..main import LibvirtSession
from ..vm import VirtualMachine
from ..exceptions import VMError, VMNotFound
from ..vm import VirtualMachine, VMError, VMNotFound
logger = logging.getLogger(__name__)

View File

@ -17,8 +17,7 @@ import logging
from docopt import docopt
from ..main import LibvirtSession
from ..vm import QemuAgent
from ..exceptions import QemuAgentError, VMNotFound
from ..vm import QemuAgent, QemuAgentError, VMNotFound
logger = logging.getLogger(__name__)