Skip to content

Commit

Permalink
Merge pull request #229 from odedsh/master
Browse files Browse the repository at this point in the history
Remove IsCEOOrRelativeOfCEO from maya directors
  • Loading branch information
odedsh authored Feb 2, 2024
2 parents 23e349f + c8053e8 commit d803181
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ def validate(rows):
verify_row_values(row, 'IsIsraeli', CITIZENSHIP_MAPPING)
verify_row_values(row, 'SugMisparZihuy', SUG_MISPAR_ZIHUY_MAPPING)
verify_row_values(row, 'IsDirectorInAnotherCompany', YES_NO_MAPPING)
verify_row_values(row, 'IsCEOOrCEORelative', YES_NO_MAPPING)
verify_row_values(row, 'IsDirectorEmployedAtCompanyOrConnectedCompany', YES_NO_MAPPING)
verify_row_values(row, 'EmployedAtAnotherJobConnectedToTheCompany', YES_NO_MAPPING)

Expand Down Expand Up @@ -224,9 +223,6 @@ def parse_document(rows):
row['IsMemberInBoardCommittee'] = YES_NO_MAPPING[row['IsMemberInBoardCommittee']]
row['DirectorHoldsCompanyStocks'] = YES_NO_MAPPING[row['DirectorHoldsCompanyStocks']]
row['DirectorHoldsStocksInSubsidiaryOrConnectedCompany'] = YES_NO_MAPPING[row['DirectorHoldsStocksInSubsidiaryOrConnectedCompany']]

row['IsCEOOrCEORelative'] = YES_NO_MAPPING[row['IsCEOOrCEORelative']]

if 'EmployedAtAnotherJobConnectedToTheCompany' in row and row['EmployedAtAnotherJobConnectedToTheCompany'] is not None:
row['EmployedAtAnotherJobConnectedToTheCompany'] = YES_NO_MAPPING[row['EmployedAtAnotherJobConnectedToTheCompany']]
if 'IsIndependentDirector' in row and row['IsIndependentDirector'] is not None:
Expand Down

0 comments on commit d803181

Please sign in to comment.