Skip to content

Commit 3eb5780

Browse files
committed
fix linting
1 parent 5acee0d commit 3eb5780

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src_c/font.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -492,9 +492,9 @@ font_setter_align(PyObject *self, PyObject *value, void *closure)
492492
}
493493

494494
if (val < 0 || val > 2) {
495-
PyErr_SetString(
496-
pgExc_SDLError,
497-
"font.align should be FONT_LEFT, FONT_CENTER, or FONT_RIGHT, (0, 1 or 2)");
495+
PyErr_SetString(pgExc_SDLError,
496+
"font.align should be FONT_LEFT, FONT_CENTER, or "
497+
"FONT_RIGHT, (0, 1 or 2)");
498498
return -1;
499499
}
500500

0 commit comments

Comments
 (0)