Skip to content

Commit 5782c51

Browse files
committed
Changed double quotes to singe quotes
1 parent 7735275 commit 5782c51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_logging.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ class FileHandler(LoggingHandler):
9999
:param mode: Whether to write ('w') or append ('a'); default is to append
100100
"""
101101

102-
def __init__(self, filepath: str, mode: str = "a"):
103-
self.logfile = open(filepath, mode, encoding="utf-8")
102+
def __init__(self, filepath: str, mode: str = 'a'):
103+
self.logfile = open(filepath, mode, encoding='utf-8')
104104

105105
def close(self):
106106
"""Closes the file"""

0 commit comments

Comments
 (0)