Skip to content

Commit 4e474cb

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent b40c1e6 commit 4e474cb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

mypy/errors.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,9 @@ def yield_nonoverlapping_types(
297297
):
298298
selected.add(candidate)
299299

300-
persistent_nonoverlaps: dict[NonOverlapErrorInfo, tuple[list[Type], list[Type]]
301-
] = defaultdict(lambda: ([], []))
300+
persistent_nonoverlaps: dict[NonOverlapErrorInfo, tuple[list[Type], list[Type]]] = (
301+
defaultdict(lambda: ([], []))
302+
)
302303
for nonoverlaps in self.nonoverlapping_types:
303304
for candidate, (left, right) in nonoverlaps.items():
304305
if candidate in selected:

0 commit comments

Comments
 (0)