mirror of
https://github.com/micahqcade/custom_vesync.git
synced 2025-02-14 11:08:59 +01:00
7 lines
141 B
Python
7 lines
141 B
Python
|
"""VeSync API Library."""
|
||
|
import logging
|
||
|
|
||
|
logging.basicConfig(
|
||
|
level=logging.INFO, format="%(asctime)s - %(levelname)5s - %(message)s"
|
||
|
)
|