Skip to content

Commit 2bf89ec

Browse files
committed
Fix lint errors
1 parent 699941e commit 2bf89ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

terminusdb_client/woqlquery/woql_query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2850,7 +2850,7 @@ def group_by(self, group_vars, template, output, groupquery=None):
28502850
if self._cursor.get("@type"):
28512851
self._wrap_cursor_with_and()
28522852
self._cursor["@type"] = "GroupBy"
2853-
if not type(group_vars) is list:
2853+
if type(group_vars) is not list:
28542854
group_vars = [group_vars]
28552855
self._cursor["group_by"] = self._raw_var_list(group_vars)
28562856
self._cursor["template"] = self._clean_object(template)

0 commit comments

Comments
 (0)