Skip to content

Commit c376215

Browse files
authored
Fixed company format (#1190)
Company format for Armenian localization was missing a close curly bracket Due to this typo last_name became a valid name for Armenian companies see issue #1188
1 parent 53a8b4a commit c376215

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

faker/providers/company/hy_AM/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class Provider(CompanyProvider):
55

66
formats = (
77
'{{first_name}} և {{first_name}} {{company_suffix}}',
8-
'{{last_name} {{company_suffix}}',
8+
'{{last_name}} {{company_suffix}}',
99
'{{last_name}} և {{last_name}} {{company_suffix}}'
1010
'{{last_name}}, {{last_name}} և {{last_name}} {{company_suffix}}',
1111
)

0 commit comments

Comments
 (0)