Skip to content

Commit 3af35eb

Browse files
committed
Use a cleaner syntax for init
1 parent d81971f commit 3af35eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

normalize_repos/log.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def __init__(self):
3434
"""
3535

3636
fmt = "%(asctime)s │ %(levelname)-8s │ %(indent)s%(function)s: %(message)s"
37-
logging.Formatter.__init__(self, fmt=fmt)
37+
super().__init__(fmt=fmt)
3838

3939
self.baseline = None
4040
self.cut = None

0 commit comments

Comments
 (0)