refac: unused logger

This commit is contained in:
Jörn-Michael Miehe 2023-10-26 19:12:21 +02:00
parent 1b57fcf43d
commit ac4aeeed7f

View file

@ -2,13 +2,10 @@
Python representation of the "config.txt" file inside the WebDAV directory. Python representation of the "config.txt" file inside the WebDAV directory.
""" """
import logging
from typing import Any from typing import Any
from pydantic import BaseModel from pydantic import BaseModel
_logger = logging.getLogger(__name__)
class TickerUIConfig(BaseModel): class TickerUIConfig(BaseModel):
""" """