From 1371b01f78afcfb836ef21a81cdb9b6516c1119e Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Wed, 23 Oct 2019 03:28:47 +0200 Subject: [PATCH] typing for ReprFailDoctest --- src/_pytest/doctest.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/_pytest/doctest.py b/src/_pytest/doctest.py index 1bd2642ae..fd65a3cc7 100644 --- a/src/_pytest/doctest.py +++ b/src/_pytest/doctest.py @@ -6,6 +6,8 @@ import sys import traceback import warnings from contextlib import contextmanager +from typing import Sequence +from typing import Tuple import pytest from _pytest import outcomes @@ -113,11 +115,12 @@ def _is_doctest(config, path, parent): class ReprFailDoctest(TerminalRepr): - def __init__(self, reprlocation_lines): - # List of (reprlocation, lines) tuples + def __init__( + self, reprlocation_lines: Sequence[Tuple[ReprFileLocation, Sequence[str]]] + ): self.reprlocation_lines = reprlocation_lines - def toterminal(self, tw): + def toterminal(self, tw) -> None: for reprlocation, lines in self.reprlocation_lines: for line in lines: tw.line(line)