Skip to content

Commit e5cab44

Browse files
committed
_check error fixed
1 parent 030ac10 commit e5cab44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python_avataaars/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def _install_enum(name, value, part_type, enum_type):
8888

8989
# Check wether the value exists or not
9090
_check(const_name in combined,
91-
"{}.{} already exists".format(part_type.__name__, const_name, FileExistsError))
91+
"{}.{} already exists".format(part_type.__name__, const_name), FileExistsError)
9292

9393
# Add to installed
9494
installed_values[part_type.__name__][const_name] = value

0 commit comments

Comments
 (0)