Skip to content

Commit

Permalink
Update bron_arango.py (#51)
Browse files Browse the repository at this point in the history
Fix type annotation of `dict` to `Dict`
  • Loading branch information
hembergerik authored Jun 28, 2024
1 parent 62541e7 commit 8a18686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graph_db/bron_arango.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def main(
logging.info(f"Done: Edges to file")


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

0 comments on commit 8a18686

Please sign in to comment.