Skip to content

Commit

Permalink
Fix type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
bgyori committed Sep 23, 2022
1 parent 9102ed3 commit 958eee8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mira/dkg/construct.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
EDGES_PATH = DEMO_MODULE.join(name="edges.tsv.gz")
METAREGISTRY_PATH = DEMO_MODULE.join(name="metaregistry.json")
OBSOLETE = {"oboinowl:ObsoleteClass", "oboinowl:ObsoleteProperty"}
EDGES_PATHS: dict[str, Path] = {
EDGES_PATHS: Dict[str, Path] = {
prefix: DEMO_MODULE.join("sources", name=f"edges_{prefix}.tsv") for prefix in PREFIXES
}
EDGE_HEADER = (
Expand Down

0 comments on commit 958eee8

Please sign in to comment.