Skip to content

Commit 969f3b0

Browse files
committed
Change arg names
1 parent 61fd3cf commit 969f3b0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

adafruit_logging.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -305,19 +305,19 @@ def addHandler(self, handler: Handler):
305305
def log(self, log_level: int, format_string: str, *args):
306306
"""Dummy implementation."""
307307

308-
def debug(self, format_string: str, *args):
308+
def debug(self, msg: str, *args):
309309
"""Dummy implementation."""
310310

311-
def info(self, format_string: str, *args):
311+
def info(self, msg: str, *args):
312312
"""Dummy implementation."""
313313

314-
def warning(self, format_string: str, *args):
314+
def warning(self, msg: str, *args):
315315
"""Dummy implementation."""
316316

317-
def error(self, format_string: str, *args):
317+
def error(self, msg: str, *args):
318318
"""Dummy implementation."""
319319

320-
def critical(self, format_string: str, *args):
320+
def critical(self, msg: str, *args):
321321
"""Dummy implementation."""
322322

323323
def _emit(self, log_level: int, message: str):

0 commit comments

Comments
 (0)