Skip to content

Commit

Permalink
Merge pull request #267 from tigergraph/GML-1899-tgexception-fix
Browse files Browse the repository at this point in the history
fix tg exception import
  • Loading branch information
parkererickson-tg authored Nov 18, 2024
2 parents 1a9f542 + 85d7bbb commit a6e70d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion pyTigerGraph/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from pyTigerGraph.pyTigerGraph import TigerGraphConnection
from pyTigerGraph.pytgasync.pyTigerGraph import AsyncTigerGraphConnection
from pyTigerGraph.common.exception import TigerGraphException

__version__ = "1.8"
__version__ = "1.8.1"

__license__ = "Apache 2"
2 changes: 1 addition & 1 deletion pyTigerGraph/gds/dataloaders.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
import numpy as np
import pandas as pd

from ..pyTigerGraphException import TigerGraphException
from ..common.exception import TigerGraphException
from .utilities import install_query_file, random_string, add_attribute

__all__ = ["VertexLoader", "EdgeLoader", "NeighborLoader", "GraphLoader", "EdgeNeighborLoader", "NodePieceLoader", "HGTLoader"]
Expand Down
2 changes: 1 addition & 1 deletion pyTigerGraph/gds/featurizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
if TYPE_CHECKING:
from ..pyTigerGraph import TigerGraphConnection

from ..pyTigerGraphException import TigerGraphException
from ..common.exception import TigerGraphException
import json
import re
import time
Expand Down

0 comments on commit a6e70d2

Please sign in to comment.