fix: exclude /nostr from code format
This commit is contained in:
parent
f369e2fdac
commit
1e4ea75b00
9 changed files with 46 additions and 31 deletions
|
|
@ -3,16 +3,16 @@ import json
|
|||
from typing import List, Union
|
||||
|
||||
from fastapi import WebSocket, WebSocketDisconnect
|
||||
|
||||
from lnbits.helpers import urlsafe_short_hash
|
||||
from .nostr.client.client import NostrClient as NostrClientLib
|
||||
|
||||
from .models import Event, Filter, Filters, Relay, RelayList
|
||||
from .nostr.client.client import NostrClient as NostrClientLib
|
||||
from .nostr.event import Event as NostrEvent
|
||||
from .nostr.filter import Filter as NostrFilter
|
||||
from .nostr.filter import Filters as NostrFilters
|
||||
from .nostr.message_pool import EndOfStoredEventsMessage, EventMessage, NoticeMessage
|
||||
|
||||
|
||||
received_subscription_events: dict[str, list[Event]] = {}
|
||||
received_subscription_notices: dict[str, list[NoticeMessage]] = {}
|
||||
received_subscription_eosenotices: dict[str, EndOfStoredEventsMessage] = {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue