diff options
| -rw-r--r-- | rdflib/parser.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rdflib/parser.py b/rdflib/parser.py index 5ed41bb9..136490a1 100644 --- a/rdflib/parser.py +++ b/rdflib/parser.py @@ -21,6 +21,7 @@ from typing import ( IO, Any, BinaryIO, + List, Optional, TextIO, Tuple, @@ -195,6 +196,7 @@ class URLInputSource(InputSource): """ TODO: """ + links: List[str] @classmethod def getallmatchingheaders(cls, message: 'HTTPMessage', name): |
