comparison tests/e2e/libervia-cli/conftest.py @ 4071:4b842c1fb686

refactoring: renamed `sat` package to `libervia.backend`
author Goffi <goffi@goffi.org>
date Fri, 02 Jun 2023 11:49:51 +0200
parents d4b8f1e8f0b4
children dfccc90cacc6
comparison
equal deleted inserted replaced
4070:d10748475025 4071:4b842c1fb686
52 class LiberviaCliElt(LiberviaCliJson): 52 class LiberviaCliElt(LiberviaCliJson):
53 """li like commands parsing result as domishElement""" 53 """li like commands parsing result as domishElement"""
54 54
55 def __init__(self): 55 def __init__(self):
56 super().__init__() 56 super().__init__()
57 from sat.tools.xml_tools import ElementParser 57 from libervia.backend.tools.xml_tools import ElementParser
58 self.parser = ElementParser() 58 self.parser = ElementParser()
59 59
60 def __call__(self, *args, **kwargs): 60 def __call__(self, *args, **kwargs):
61 args = self.subcommands + list(args) 61 args = self.subcommands + list(args)
62 self.subcommands.clear() 62 self.subcommands.clear()