Skip to content

Commit

Permalink
Fix typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
caufieldjh committed Mar 12, 2024
1 parent e97197f commit 35afe3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ontogpt/engines/pheno_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def evaluate(self, phenopackets: List[PHENOPACKET]) -> List[DiagnosisPrediction]
}
except KeyError:
logger.warning(f"No diseases found in phenopacket {phenopacket['id']}")
validated_disease_ids = {}
validated_disease_ids = set()
dp.validated_disease_ids = list(validated_disease_ids)
if validated_disease_ids:
dp.validated_disease_labels = [
Expand Down

0 comments on commit 35afe3d

Please sign in to comment.