Skip to content

Commit

Permalink
Make formatter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
yuce committed Oct 26, 2024
1 parent c445b42 commit ee4008c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_prolog.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def test_placeholder_2(self):
ids = [1, 2, 3]
Prolog.assertz("user(%p,%p)", joe, ids)
result = list(Prolog.query("user(%p, IDs)", joe))
self.assertEqual([{'IDs': [1, 2, 3]}], result)
self.assertEqual([{"IDs": [1, 2, 3]}], result)


format_prolog_fixture = [
Expand Down

0 comments on commit ee4008c

Please sign in to comment.