diff --git a/hypothesis/__init__.py b/hypothesis/__init__.py index 47c0656..a30fa29 100644 --- a/hypothesis/__init__.py +++ b/hypothesis/__init__.py @@ -21,9 +21,13 @@ class Entry(NamedTuple): link: Url eid: str annotation: Optional[str] - context: str + context: Url tags: Sequence[str] - hyp_link: str + hyp_link: Url + + @property + def title(self): + return self.summary # TODO eh, remove one of them?... class Page(NamedTuple):