mirror of
https://github.com/lnbits/lnbits.git
synced 2026-08-17 13:16:11 +02:00
test: fix
This commit is contained in:
parent
12bd3465f4
commit
44105b433c
1 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ import json
|
|||
from datetime import datetime, timedelta, timezone
|
||||
from pathlib import Path
|
||||
from types import SimpleNamespace
|
||||
from typing import cast
|
||||
from typing import Any, cast
|
||||
from uuid import uuid4
|
||||
|
||||
import pytest
|
||||
|
|
@ -433,7 +433,7 @@ def _write_storage_extension(settings: Settings, ext_id: str) -> Path:
|
|||
storage_dir = ext_dir / "storage"
|
||||
migrations_dir = storage_dir / "migrations"
|
||||
migrations_dir.mkdir(parents=True)
|
||||
schema = {
|
||||
schema: dict[str, Any] = {
|
||||
"tables": {
|
||||
"notes": {
|
||||
"fields": [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue