Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
tykling committed Feb 20, 2024
1 parent c0607aa commit 54c620e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/dns_exporter/entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ def main(mockargs: Optional[list[str]] = None) -> None:
sys.exit(0)

# configure the log format and level
console_logformat = "%(asctime)s %(levelname)s %(name)s.%(funcName)s():%(lineno)i: %(message)s"
console_logformat = (
"%(asctime)s %(levelname)s %(name)s.%(funcName)s():%(lineno)i: %(message)s"
)
level = getattr(args, "log-level")
logging.basicConfig(
level=level,
Expand Down

0 comments on commit 54c620e

Please sign in to comment.