Skip to content

Commit

Permalink
upgrade black from 23.12.1 to 24.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fphammerle committed Feb 2, 2024
1 parent d2bd58d commit 2dfe315
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 29 deletions.
52 changes: 26 additions & 26 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions location_guessing_game_telegram_bot/__init__.py
Expand Up @@ -195,9 +195,11 @@ def _main() -> None:
# https://github.com/fphammerle/python-cc1101/blob/26d8122661fc4587ecc7c73df55b92d05cf98fe8/cc1101/_cli.py#L51
logging.basicConfig(
level=logging.DEBUG if args.debug else logging.INFO,
format="%(asctime)s:%(levelname)s:%(name)s:%(funcName)s:%(message)s"
if args.debug
else "%(message)s",
format=(
"%(asctime)s:%(levelname)s:%(name)s:%(funcName)s:%(message)s"
if args.debug
else "%(message)s"
),
datefmt="%Y-%m-%dT%H:%M:%S%z",
)
_LOGGER.debug("args=%r", args)
Expand Down

0 comments on commit 2dfe315

Please sign in to comment.