project/nanoeval/nanoeval/evaluation.py [137:147]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            with db.conn() as conn:
                cur = conn.execute(
                    """
                    SELECT COUNT(*)
                    FROM task
                    WHERE eval_id = ?
                    """,
                    (recorder.run_spec.run_id,),
                )
                res = cur.fetchone()
                assert res is not None, "No results from count query"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



project/nanoeval/nanoeval/evaluation.py [168:178]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                with db.conn() as conn:
                    cur = conn.execute(
                        """
                        SELECT COUNT(*)
                        FROM task
                        WHERE eval_id = ?
                        """,
                        (recorder.run_spec.run_id,),
                    )
                    res = cur.fetchone()
                    assert res is not None, "No results from count query"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



