Skip to content

Commit

Permalink
fix: type ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Jul 4, 2023
1 parent 6ee5011 commit 55335d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adbpyg_adapter/adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,8 +527,8 @@ def y_tensor_to_2_column_dataframe(pyg_tensor):
edge_definitions = self.etypes_to_edefinitions(edge_types)
orphan_collections = self.ntypes_to_ocollections(node_types, edge_types)
adb_graph = self.__db.create_graph(
name, edge_definitions, orphan_collections # type: ignore
)
name, edge_definitions, orphan_collections
) # type: ignore

# Define PyG data properties
node_data: NodeStorage
Expand Down

0 comments on commit 55335d5

Please sign in to comment.