mirror of
https://github.com/Andre0512/pyhOn.git
synced 2024-11-23 22:30:57 +01:00
Fix another issue with data path
This commit is contained in:
parent
29c936b045
commit
a5595f47bf
@ -38,9 +38,7 @@ def get_arguments() -> Dict[str, Any]:
|
||||
"translate", help="language (de, en, fr...)", metavar="LANGUAGE"
|
||||
)
|
||||
translation.add_argument("--json", help="print as json", action="store_true")
|
||||
parser.add_argument(
|
||||
"-i", "--import", help="import pyhon data", nargs="?", default=Path().cwd()
|
||||
)
|
||||
parser.add_argument("-i", "--import", help="import pyhon data", nargs="?")
|
||||
return vars(parser.parse_args())
|
||||
|
||||
|
||||
@ -73,9 +71,8 @@ async def main() -> None:
|
||||
if language := args.get("translate"):
|
||||
await translate(language, json_output=args.get("json", ""))
|
||||
return
|
||||
async with Hon(
|
||||
*get_login_data(args), test_data_path=Path(args.get("import", ""))
|
||||
) as hon:
|
||||
test_data_path = Path(path) if (path := args.get("import", "")) else None
|
||||
async with Hon(*get_login_data(args), test_data_path=test_data_path) as hon:
|
||||
for device in hon.appliances:
|
||||
if args.get("export"):
|
||||
anonymous = args.get("anonymous", False)
|
||||
|
@ -104,7 +104,9 @@ class Hon:
|
||||
await self._create_appliance(appliance, self.api)
|
||||
if (
|
||||
self._test_data_path
|
||||
and (test_data := self._test_data_path / "hon-test-data" / "test_data").exists()
|
||||
and (
|
||||
test_data := self._test_data_path / "hon-test-data" / "test_data"
|
||||
).exists()
|
||||
or (test_data := test_data / "..").exists()
|
||||
):
|
||||
api = TestAPI(test_data)
|
||||
|
Loading…
Reference in New Issue
Block a user