Skip to content

Commit 869473b

Browse files
committed
fixed
1 parent ffd4d95 commit 869473b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/axiomatic/axtract/relation_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .models import EquationExtraction
2-
from pyvis.network import Network
2+
from pyvis.network import Network # type: ignore
33

44

55
def normalize_latex_symbol(symbol: str) -> str:

src/axiomatic/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __init__(self, ax_client: Axiomatic):
2828
self._ax_client = ax_client
2929

3030
def create_report(self, response: EquationExtractionResponse, path: str):
31-
from src.axiomatic.axtract.axtract_report import create_report
31+
from .axtract.axtract_report import create_report
3232

3333
create_report(response, path)
3434

0 commit comments

Comments
 (0)