Skip to content

Commit

Permalink
added dict as type identifier. This seems to raise no warnings in PyC…
Browse files Browse the repository at this point in the history
…harm
  • Loading branch information
Filip Kovacevic committed Jan 4, 2022
1 parent 8199af8 commit a2da047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rdflib/plugins/sparql/algebra.py
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ def find_nth(haystack, needle, n):
with open("query.txt", "w") as file:
file.write(filedata)

aggr_vars = collections.defaultdict(list)
aggr_vars = collections.defaultdict(list) # type: dict

def convert_node_arg(node_arg):
if isinstance(node_arg, Identifier):
Expand Down

0 comments on commit a2da047

Please sign in to comment.