aboutsummaryrefslogtreecommitdiffstats
path: root/python/handle_default.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/handle_default.py')
-rw-r--r--python/handle_default.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/python/handle_default.py b/python/handle_default.py
index 85eb852b..223ec259 100644
--- a/python/handle_default.py
+++ b/python/handle_default.py
@@ -22,7 +22,6 @@ def affected_indices(company_id: int, seniority: str, conn):
"USING (basketid) "
"WHERE company_id=%s AND seniority=%s"
)
- print(sqlstr)
with conn.cursor() as c:
c.execute(sqlstr, (company_id, seniority))
recordslist = c.fetchall()