Skip to content

Commit

Permalink
Fix format str
Browse files Browse the repository at this point in the history
  • Loading branch information
nx10 committed May 22, 2024
1 parent 3b3307e commit 4136e12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/styxdefs/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def __init__(self, data_dir: InputPathType | None = None) -> None:
self.logger.setLevel(logging.DEBUG)
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
formatter = logging.Formatter("[%(levelname)s.1s] %(message)s")
formatter = logging.Formatter("[%(levelname).1s] %(message)s")
ch.setFormatter(formatter)
self.logger.addHandler(ch)

Expand Down

0 comments on commit 4136e12

Please sign in to comment.