File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -244,11 +244,11 @@ def there_is_letter_batch_for_subject(
244244 sql_query = """ SELECT lb.batch_id
245245 FROM lett_batch_records lbr
246246 INNER JOIN lett_batch lb
247- ON lb.batch_id = lbr.batch_id
247+ ON lb.batch_id = lbr.batch_id
248248 INNER JOIN valid_values ld
249- ON ld.valid_value_id = lb.description_id
249+ ON ld.valid_value_id = lb.description_id
250250 INNER JOIN valid_values lbs
251- ON lbs.valid_value_id = lb.status_id
251+ ON lbs.valid_value_id = lb.status_id
252252 WHERE lb.batch_state_id = 12018
253253 AND lbr.screening_subject_id = :subject_id
254254 AND lbs.allowed_value = :batch_code
Original file line number Diff line number Diff line change @@ -1680,12 +1680,11 @@ class OpticalDiagnosisConfidenceOptions(StrEnum):
16801680
16811681class PolypTypeLeftInSituOptions (StrEnum ):
16821682 """Enum for Polyp Type Left in Situ options"""
1683-
1683+
16841684 INFLAMMATORY_POLYP = "17300~Sub Type Not Applicable"
16851685 LYMPHOID_FOLLICLE = "200599~Sub Type Not Applicable"
16861686
16871687
1688-
16891688# Registry of all known Enums to search when matching string values
16901689ALL_ENUMS : List [type [Enum ]] = [
16911690 obj
You can’t perform that action at this time.
0 commit comments