Skip to content

Commit 8a18686

Browse files
authored
Update bron_arango.py (#51)
Fix type annotation of `dict` to `Dict`
1 parent 62541e7 commit 8a18686

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graph_db/bron_arango.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def main(
171171
logging.info(f"Done: Edges to file")
172172

173173

174-
def get_edge_document(o_edge: Tuple[str, str], validation: bool, schemas: dict[str, Any]) -> Tuple[Dict[str, str], str]:
174+
def get_edge_document(o_edge: Tuple[str, str], validation: bool, schemas: Dict[str, Any]) -> Tuple[Dict[str, str], str]:
175175
edge = order_edge(o_edge)
176176
from_node_key = get_edge_key(edge[1])
177177
from_ = f"{from_node_key}/{edge[1]}"

0 commit comments

Comments
 (0)