Skip to content

Commit

Permalink
parsing(taiwan): add third gender option
Browse files Browse the repository at this point in the history
  • Loading branch information
abhidg committed Oct 10, 2022
1 parent aa9388c commit 6d8cf7c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ingestion/functions/parsing/taiwan/taiwan.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ def convert_gender(raw_gender: str):
return "Male"
elif raw_gender == "女":
return "Female"
elif raw_gender == "第三性":
return "Third gender"
else:
raise ValueError(f'Unhandled gender: {raw_gender}')

Expand Down

0 comments on commit 6d8cf7c

Please sign in to comment.