You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
189 B

  1. from typing import ClassVar, TYPE_CHECKING
  2. from mautrix.util.async_db import Database
  3. fake_db = Database("") if TYPE_CHECKING else None
  4. class Base:
  5. db: ClassVar[Database] = fake_db