Skip to content

Commit

Permalink
Update exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
damusss committed Jun 9, 2024
1 parent 7703bbe commit 8940665
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src_c/circle.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ pg_circle_init(pgCircleObject *self, PyObject *args, PyObject *kwds)
PyErr_SetString(
PyExc_TypeError,
"Arguments must be a Circle, a sequence of length 3 or 2, or an "
"object with an attribute called 'circle' and the radius must be "
"nonnegative");
"object with an attribute called 'circle', all with corresponding "
"nonnegative radius argument");
return -1;
}
return 0;
Expand Down

0 comments on commit 8940665

Please sign in to comment.