Skip to content

Commit

Permalink
remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
imilinovic committed Jul 1, 2024
1 parent 82fdb21 commit 0491857
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion gqlalchemy/query_builders/declarative_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ class WhereConditionPartialQuery(PartialQuery):
def __init__(self, item: str, operator: Operator, keyword: Where = Where.WHERE, is_negated: bool = False, **kwargs):
super().__init__(type=keyword.name if not is_negated else f"{keyword.name} {Where.NOT.name}")
self.query = self._build_where_query(item=item, operator=operator, **kwargs)
print(self.construct_query())

def construct_query(self) -> str:
"""Constructs a where partial query."""
Expand Down

0 comments on commit 0491857

Please sign in to comment.