Skip to content

Commit

Permalink
Fix incorrect method name in method call
Browse files Browse the repository at this point in the history
  • Loading branch information
tijmenbaarda committed Aug 12, 2024
1 parent 8009dde commit cdd2f34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion edpop_explorer/sparqlreader.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ def fetch(self) -> None:
)
# Call Reader's data conversion method to fill the record's Fields
assert isinstance(self, Record)
self.from_reader._convert_record(self.original_graph, self)
assert issubclass(self.from_reader, SparqlReader)
self.from_reader.convert_record(self.original_graph, self)

self.fetched = True

Expand Down

0 comments on commit cdd2f34

Please sign in to comment.