renamed helper.py to apiparser.py

This commit is contained in:
Tomaae 2022-02-02 22:01:12 +01:00
parent 79430ef1ef
commit 1ea1f3a4b7
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
"""Helper functions for Mikrotik Router.""" """API parser functions for Mikrotik Router."""
import logging import logging

View file

@ -59,7 +59,7 @@ from .const import (
DEFAULT_SENSOR_ENVIRONMENT, DEFAULT_SENSOR_ENVIRONMENT,
) )
from .exceptions import ApiEntryNotFound from .exceptions import ApiEntryNotFound
from .helper import parse_api from .apiparser import parse_api
from .mikrotikapi import MikrotikAPI from .mikrotikapi import MikrotikAPI
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)