Skip to content

Commit

Permalink
Fix type error in HALOEngine
Browse files Browse the repository at this point in the history
  • Loading branch information
caufieldjh committed Sep 19, 2023
1 parent 74a55ca commit 92d370e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ontogpt/engines/halo_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class HALOEngine(KnowledgeEngine):
default_factory=lambda: ["subtypes", "parts", "subclass_of", "part_of"]
)
fixed_slot_values: Optional[Dict[str, str]] = None
adapter: OboGraphInterface
adapter: OboGraphInterface = None
visited: Set[ELEMENT_NAME] = field(default_factory=lambda: set())
candidates: List[ELEMENT_NAME] = None
always_extend: bool = False
Expand Down

0 comments on commit 92d370e

Please sign in to comment.