Skip to content

Commit 65545d8

Browse files
committed
Manual fixups of black formatting
1 parent 1caf6d5 commit 65545d8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/_pytest/logging.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,8 @@ class LogCaptureFixture(object):
213213
def __init__(self, item):
214214
"""Creates a new funcarg."""
215215
self._item = item
216-
self._initial_log_levels = (
217-
{}
218-
) # type: Dict[str, int] # dict of log name -> log level
216+
# dict of log name -> log level
217+
self._initial_log_levels = {} # type: Dict[str, int]
219218

220219
def _finalize(self):
221220
"""Finalizes the fixture.

0 commit comments

Comments
 (0)