Skip to content

Commit

Permalink
Fix age_suffixed not being a string.
Browse files Browse the repository at this point in the history
  • Loading branch information
Phanabani committed Aug 27, 2022
1 parent 9bdf88f commit d0d3d90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sandpiper/birthdays/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def format_birthday_message(
'themself': p.reflexive,
'are': p.to_be_conjugation,
'theyre': p.subjective_to_be_contraction,
'age_suffixed': age_with_suffix(age) if age is not None else None,
'age_suffixed': age_with_suffix(age) if age is not None else '',
}
args_generated_cases = {}
for k, v in generate_cases.items():
Expand Down

0 comments on commit d0d3d90

Please sign in to comment.