Skip to content

Commit 3473aab

Browse files
authored
Update Lib/test/test_support.py
1 parent 6bdaad4 commit 3473aab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def __init__(self) -> None:
6060
super().__init__(io.StringIO())
6161
self.records = []
6262

63-
def emit(self, record: logging.LogRecord) -> None:
63+
def emit(self, record) -> None:
6464
"""Keep the log records in a list in addition to the log text."""
6565
self.records.append(record)
6666
super().emit(record)

0 commit comments

Comments
 (0)