diff options
| author | stuppie | 2026-08-17 16:45:57 -0600 |
|---|---|---|
| committer | stuppie | 2026-08-17 16:45:57 -0600 |
| commit | 2eab4f1b0cb7b829abd588d4690bec1e5cfaaee6 (patch) | |
| tree | b84ead19e959f9086087aa2422d749ac1cc22dcc | |
| parent | 7d341dbd4b4960be323ac10af8c0a1307d462379 (diff) | |
| download | generalresearch-2eab4f1b0cb7b829abd588d4690bec1e5cfaaee6.tar.gz generalresearch-2eab4f1b0cb7b829abd588d4690bec1e5cfaaee6.zip | |
1 more broken type hint
| -rw-r--r-- | generalresearch/grliq/models/forensic_summary.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generalresearch/grliq/models/forensic_summary.py b/generalresearch/grliq/models/forensic_summary.py index b0112e7..d6f46f8 100644 --- a/generalresearch/grliq/models/forensic_summary.py +++ b/generalresearch/grliq/models/forensic_summary.py @@ -8,6 +8,7 @@ from typing import ( get_args, get_origin, get_type_hints, + Optional, ) import numpy as np @@ -56,7 +57,7 @@ class UserForensicSummary(BaseModel): ) # These must be nullable in case a user has 0 attempts! - category_result_summary: GrlIqForensicCategorySummary | = Field( + category_result_summary: GrlIqForensicCategorySummary | None= Field( default=None ) checker_result_summary: GrlIqCheckerResultsSummary | None = Field(default=None) |
