(*args: typing.Any, **kwargs: typing.Any)
| 82 | Only used in the absence of sqlite""" |
| 83 | |
| 84 | def execute(*args: typing.Any, **kwargs: typing.Any) -> list: |
| 85 | return [] |
| 86 | |
| 87 | def commit(self, *args, **kwargs): # type: ignore [no-untyped-def] |
| 88 | pass |
no outgoing calls