summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rdflib/parser.py2
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):