This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Collects device data and dumps it to the JSON file. | |
pyplumio version: >=0.5.43 | |
""" | |
import asyncio | |
from dataclasses import replace | |
import json | |
import sys | |
from typing import Any, Final, Optional, Union |
OlderNewer