We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 922ab94 commit b05b4daCopy full SHA for b05b4da
src/mavedb/routers/statistics.py
@@ -260,7 +260,6 @@ def _record_from_field_and_model(
260
model_created_by_field = getattr(queried_model, "created_by_id")
261
model_published_data_field = getattr(queried_model, "published_date")
262
if field is RecordFields.createdBy:
263
- print("111")
264
query = (
265
select(User.username, func.count(User.id))
266
.join(queried_model, model_created_by_field == User.id)
@@ -270,7 +269,6 @@ def _record_from_field_and_model(
270
269
271
return db.execute(query).all()
272
else:
273
- print("2222")
274
# All assc table identifiers which are linked to a published model.
275
queried_assc_table = association_tables[model][field]
276
published_score_sets_statement = (
0 commit comments