Skip to content

Commit b05b4da

Browse files
committed
Remove print.
1 parent 922ab94 commit b05b4da

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/mavedb/routers/statistics.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,6 @@ def _record_from_field_and_model(
260260
model_created_by_field = getattr(queried_model, "created_by_id")
261261
model_published_data_field = getattr(queried_model, "published_date")
262262
if field is RecordFields.createdBy:
263-
print("111")
264263
query = (
265264
select(User.username, func.count(User.id))
266265
.join(queried_model, model_created_by_field == User.id)
@@ -270,7 +269,6 @@ def _record_from_field_and_model(
270269

271270
return db.execute(query).all()
272271
else:
273-
print("2222")
274272
# All assc table identifiers which are linked to a published model.
275273
queried_assc_table = association_tables[model][field]
276274
published_score_sets_statement = (

0 commit comments

Comments
 (0)