Skip to content

Commit 40c9b63

Browse files
committed
🐛(ingestion-presentation) solve import conflict
1 parent 49a66f8 commit 40c9b63

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/web/domain/interfaces/mapper_interface.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from abc import ABC, abstractmethod
1+
from abc import abstractmethod
22
from typing import Generic, Optional, Protocol, TypeVar
33

44
DomainType_contra = TypeVar("DomainType_contra", contravariant=True)
@@ -20,7 +20,7 @@ def to_domain(
2020
) -> Optional[DomainType_co]: ...
2121

2222

23-
class ISerializerToDomainMapper(ABC):
23+
class ISerializerToDomainMapper:
2424
@abstractmethod
2525
def to_domain(self): ...
2626

0 commit comments

Comments
 (0)