From 65545d8fb28450a6dc8b895698c1e74e3b263478 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Mon, 8 Oct 2018 10:12:42 -0700 Subject: [PATCH] Manual fixups of black formatting --- src/_pytest/logging.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/_pytest/logging.py b/src/_pytest/logging.py index f1fc05ffa..cac745b3d 100644 --- a/src/_pytest/logging.py +++ b/src/_pytest/logging.py @@ -213,9 +213,8 @@ class LogCaptureFixture(object): def __init__(self, item): """Creates a new funcarg.""" self._item = item - self._initial_log_levels = ( - {} - ) # type: Dict[str, int] # dict of log name -> log level + # dict of log name -> log level + self._initial_log_levels = {} # type: Dict[str, int] def _finalize(self): """Finalizes the fixture.