typing: fix _TracebackStyle: add "line"

This commit is contained in:
Daniel Hahler
2020-01-17 05:23:54 +01:00
parent e98176cf50
commit 09e9a01df3
2 changed files with 8 additions and 3 deletions

View File

@@ -41,7 +41,7 @@ if TYPE_CHECKING:
from _pytest._code import Source
_TracebackStyle = Literal["long", "short", "no", "native"]
_TracebackStyle = Literal["long", "short", "line", "no", "native"]
class Code: