From 4dda04e2697826a5cc9fb0b0666ced80f563f8cb Mon Sep 17 00:00:00 2001 From: "d.maximchuk" Date: Mon, 16 Sep 2024 17:12:42 +0300 Subject: [PATCH] drop print --- featureflags/graph/graph.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/featureflags/graph/graph.py b/featureflags/graph/graph.py index 0dc5f4c..29f84f1 100644 --- a/featureflags/graph/graph.py +++ b/featureflags/graph/graph.py @@ -118,10 +118,6 @@ async def root_flags(ctx: dict, options: dict) -> list: if flag_name: expr = expr.where(Flag.name.ilike(f"%{flag_name}%")) - print(expr) - print(expr) - print(expr) - return await exec_expression(ctx[GraphContext.DB_ENGINE], expr)