Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ReadOnlyGraphAggregate.quads should accept a quad #430

Closed
drewp opened this issue Oct 27, 2014 · 0 comments · Fixed by #1590
Closed

ReadOnlyGraphAggregate.quads should accept a quad #430

drewp opened this issue Oct 27, 2014 · 0 comments · Fixed by #1590

Comments

@drewp
Copy link
Contributor

drewp commented Oct 27, 2014

This part is wrong:

   1830     def quads(self, (s, p, o)):
   1831         """Iterate over all the quads in the entire aggregate graph"""
   1832         for graph in self.graphs:
   1833             for s1, p1, o1 in graph.triples((s, p, o)):
   1834                 yield (s1, p1, o1, graph)

It should accept a context in the incoming tuple.

@ghost ghost mentioned this issue Dec 25, 2021
@ghost ghost added the fix-in-progress label Dec 25, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant