()
| 3329 | ).fetchone()["count"] |
| 3330 | or 0 |
| 3331 | ) |
| 3332 | citation_count = int( |
| 3333 | conn.execute( |
| 3334 | f""" |
| 3335 | SELECT COUNT(*) AS count |
| 3336 | FROM wiki_citations |
| 3337 | WHERE user_id = ? |
| 3338 | AND node_id IN ({placeholders}) |
| 3339 | """, |
| 3340 | [user_id, *visible_ids], |
| 3341 | ).fetchone()["count"] |
no test coverage detected