Files
tmhr/venv/lib/python3.10/site-packages/prompt_toolkit/log.py
2024-02-23 10:30:02 +00:00

13 lines
152 B
Python

"""
Logging configuration.
"""
from __future__ import annotations
import logging
__all__ = [
"logger",
]
logger = logging.getLogger(__package__)