Skip to content
This repository was archived by the owner on Jun 23, 2023. It is now read-only.

Commit ca151e2

Browse files
committed
fix: Fix imports
1 parent d31f276 commit ca151e2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

entityshape/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import requests
44
from pydantic import BaseModel
55

6-
from src.exceptions import EidError, LangError, QidError, ApiError
6+
from entityshape.exceptions import ApiError, EidError, LangError, QidError
77

88

99
class EntityShape(BaseModel):

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from unittest import TestCase
22

3-
from src import EntityShape
3+
from entityshape import EntityShape
44

55

66
class TestEntityShape(TestCase):

0 commit comments

Comments
 (0)