Skip to content

Commit

Permalink
Fix prefix for male bg_BG names (#2004)
Browse files Browse the repository at this point in the history
The Bulgarian person provider used `prefix_female` instead of `prefix_male` within `formats_male`.
  • Loading branch information
DimitarVanguelov authored Mar 13, 2024
1 parent 80ac24f commit 963d0b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion faker/providers/person/bg_BG/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1759,7 +1759,7 @@ class Provider(PersonProvider):

formats_male = (
"{{first_name_male}} {{last_name_male}}",
"{{prefix_female}} {{first_name_male}} {{last_name_male}}",
"{{prefix_male}} {{first_name_male}} {{last_name_male}}",
)

formats = formats_male + formats_female
Expand Down

0 comments on commit 963d0b2

Please sign in to comment.