Skip to content

Commit 2c3bafd

Browse files
committed
Updated formatting per black
1 parent 4b2af64 commit 2c3bafd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adafruit_logging/extensions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from . import LoggingHandler
22

3+
34
class FileHandler(LoggingHandler):
45
"""File handler for working with log files off of the microcontroller (like
56
an SD card)
@@ -29,4 +30,4 @@ def emit(self, level: int, msg: str):
2930
:param level: The level of the message
3031
:param msg: The message to log
3132
"""
32-
self.logfile.write(self.format(level, msg))
33+
self.logfile.write(self.format(level, msg))

0 commit comments

Comments
 (0)