Skip to content

Commit a6e70d2

Browse files
Merge pull request #267 from tigergraph/GML-1899-tgexception-fix
fix tg exception import
2 parents 1a9f542 + 85d7bbb commit a6e70d2

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

pyTigerGraph/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from pyTigerGraph.pyTigerGraph import TigerGraphConnection
22
from pyTigerGraph.pytgasync.pyTigerGraph import AsyncTigerGraphConnection
3+
from pyTigerGraph.common.exception import TigerGraphException
34

4-
__version__ = "1.8"
5+
__version__ = "1.8.1"
56

67
__license__ = "Apache 2"

pyTigerGraph/gds/dataloaders.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
import numpy as np
3838
import pandas as pd
3939

40-
from ..pyTigerGraphException import TigerGraphException
40+
from ..common.exception import TigerGraphException
4141
from .utilities import install_query_file, random_string, add_attribute
4242

4343
__all__ = ["VertexLoader", "EdgeLoader", "NeighborLoader", "GraphLoader", "EdgeNeighborLoader", "NodePieceLoader", "HGTLoader"]

pyTigerGraph/gds/featurizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
if TYPE_CHECKING:
2626
from ..pyTigerGraph import TigerGraphConnection
2727

28-
from ..pyTigerGraphException import TigerGraphException
28+
from ..common.exception import TigerGraphException
2929
import json
3030
import re
3131
import time

0 commit comments

Comments
 (0)