Skip to content

Commit

Permalink
error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lollerfirst committed Jul 30, 2024
1 parent a5b147b commit 1dd7abf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cashu/mint/crud.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json
from abc import ABC, abstractmethod
from typing import Any, Dict, List, Optional
from .base import DiscreteLogContract
from ..core.base import DiscreteLogContract

from ..core.base import (
BlindedSignature,
Expand Down Expand Up @@ -250,7 +250,7 @@ async def get_registered_dlc(
dlc_root: str,
db: Database,
conn: Optional[Connection] = None,
) -> DiscreteLogContract:
) -> Optional[DiscreteLogContract]:
...

@abstractmethod
Expand Down

0 comments on commit 1dd7abf

Please sign in to comment.