Skip to content

Commit fef5542

Browse files
committed
Missing semicolon
1 parent 963fd40 commit fef5542

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1622,7 +1622,7 @@ too_many_positional(PyThreadState *tstate, PyCodeObject *co,
16221622
self_hint = PyUnicode_FromString(
16231623
". Did you forget the 'self' parameter in the function definition?");
16241624
if (self_hint == NULL) {
1625-
self_hint = Py_GetConstant(Py_CONSTANT_EMPTY_STR)
1625+
self_hint = Py_GetConstant(Py_CONSTANT_EMPTY_STR);
16261626
}
16271627
}
16281628
_PyErr_Format(tstate, PyExc_TypeError,

0 commit comments

Comments
 (0)