Skip to content

Commit 1e6edfe

Browse files
fix elif legacy
1 parent fdd45b3 commit 1e6edfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

schematic/manifest/generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1588,7 +1588,7 @@ def _get_end_columns(self, current_schema_headers, existing_manifest_headers, ou
15881588
end_columns.append(id_name)
15891589

15901590
# Add entity_id to the end columns if it should be there but isn't
1591-
elif 'entityId' in (current_schema_headers or existing_manfiest_headers) and 'entityId' not in end_columns:
1591+
if 'entityId' in (current_schema_headers or existing_manfiest_headers) and 'entityId' not in end_columns:
15921592
end_columns.append('entityId')
15931593
return end_columns
15941594

0 commit comments

Comments
 (0)