Skip to content

Commit

Permalink
Remove comma
Browse files Browse the repository at this point in the history
  • Loading branch information
Corey Chivers authored and jlubken committed Dec 22, 2021
1 parent f4fafcc commit 3446089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dsdk/persistor.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def render_without_keys(cls, cur, query, parameters):
if parameters is None:
parameters = {}
formatter = Formatter()
query = "".join((each[0] for each, in formatter.parse(query)))
query = "".join((each[0] for each in formatter.parse(query)))
return cls.mogrify(cur, query, parameters).decode("utf-8")

@classmethod
Expand Down

0 comments on commit 3446089

Please sign in to comment.