summaryrefslogtreecommitdiff
path: root/coverage/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/types.py')
-rw-r--r--coverage/types.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/coverage/types.py b/coverage/types.py
index 1e641d1c..416b0b5d 100644
--- a/coverage/types.py
+++ b/coverage/types.py
@@ -7,7 +7,7 @@ Types for use throughout coverage.py.
from types import ModuleType
from typing import (
- Any, Dict, Iterable, List, Optional, Sequence, Tuple, Union,
+ Any, Dict, Iterable, List, Optional, Tuple, Union,
TYPE_CHECKING,
)
@@ -81,6 +81,3 @@ class TDebugCtl(Protocol):
def write(self, msg: str) -> None:
"""Write a line of debug output."""
-
-# Data returned from sys_info()
-TSysInfo = Sequence[Tuple[str, Union[str, Iterable[str]]]]