summaryrefslogtreecommitdiff
path: root/rdflib/plugins/sparql/results/tsvresults.py
diff options
context:
space:
mode:
Diffstat (limited to 'rdflib/plugins/sparql/results/tsvresults.py')
-rw-r--r--rdflib/plugins/sparql/results/tsvresults.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/rdflib/plugins/sparql/results/tsvresults.py b/rdflib/plugins/sparql/results/tsvresults.py
index 3bfce411..02274f26 100644
--- a/rdflib/plugins/sparql/results/tsvresults.py
+++ b/rdflib/plugins/sparql/results/tsvresults.py
@@ -65,7 +65,6 @@ HEADER.parseWithTabs()
class TSVResultParser(ResultParser):
# type error: Signature of "parse" incompatible with supertype "ResultParser" [override]
def parse(self, source: IO, content_type: typing.Optional[str] = None) -> Result: # type: ignore[override]
-
if isinstance(source.read(0), bytes):
# if reading from source returns bytes do utf-8 decoding
# type error: Incompatible types in assignment (expression has type "StreamReader", variable has type "IO[Any]")