mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
12 lines
161 B
Python
12 lines
161 B
Python
"""Bar."""
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def bar() -> None:
|
|
"""Bar."""
|
|
logger.debug(f"bar {__name__}")
|
|
logger.debug("bar")
|