Return the logical date used by daily token statistics.
(self)
| 34 | await db.execute("PRAGMA foreign_keys = ON") |
| 35 | |
| 36 | def _current_stats_date(self) -> str: |
| 37 | """Return the logical date used by daily token statistics.""" |
| 38 | return date.today().isoformat() |
| 39 | |
| 40 | @asynccontextmanager |
| 41 | async def _connect(self, *, write: bool = False): |
no outgoing calls
no test coverage detected