Skip to content

Commit

Permalink
Type hint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
caufieldjh committed Aug 23, 2024
1 parent 030256c commit fe580b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ontogpt/utils/multilingual.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def multilingual_analysis(

# Keep track of the predictions
# Key is the filename, value is a list of predictions
pred_ids = {}
pred_names = {}
pred_ids: dict[str, list[str]] = {}
pred_names: dict[str, list[str]] = {}

try:
gpt_diagnosis = ai.complete(prompt)
Expand Down

0 comments on commit fe580b5

Please sign in to comment.