Skip to content

Commit dd5088c

Browse files
committed
Add missing types to housing_contacts_reshape_gx_suite.py
1 parent a38bddc commit dd5088c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/jobs/housing/housing_contacts_reshape_gx_suite.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,22 @@ class ExpectTargetIDAndValueColumnValuesToBeUniqueWithinRecord(gxe.ExpectSelectC
3838

3939

4040
class ExpectTargetIDColumnValuesToNotBeNull(gxe.ExpectColumnValuesToNotBeNull):
41-
column = 'target_id'
41+
column: str = 'target_id'
4242
description: str = "Expect Target ID column to be complete with no nulls"
4343

4444

4545
class ExpectContactValueColumnValuesToNotBeNull(gxe.ExpectColumnValuesToNotBeNull):
46-
column = 'value'
46+
column: str = 'value'
4747
description: str = "Expect Value column to be complete with no nulls"
4848

4949

5050
class ExpectContactTypeColumnValuesToNotBeNull(gxe.ExpectColumnValuesToNotBeNull):
51-
column = 'contacttype'
51+
column: str = 'contacttype'
5252
description: str = "Expect Contact Type column to be complete with no nulls"
5353

5454

5555
class ExpectSubTypeColumnValuesToNotBeNull(gxe.ExpectColumnValuesToNotBeNull):
56-
column = 'subtype'
56+
column: str = 'subtype'
5757
description: str = "Expect Subtype column to be complete with no nulls"
5858

5959

0 commit comments

Comments
 (0)