Skip to content

Commit 94ab3b0

Browse files
whitespace
1 parent 3376867 commit 94ab3b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/genericaliasobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ ga_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
575575
if (!_PyArg_CheckPositional("GenericAlias", PyTuple_GET_SIZE(args), 2, 2)) {
576576
return NULL;
577577
}
578-
PyObject *origin = PyTuple_GET_ITEM(args, 0);
578+
PyObject *origin = PyTuple_GET_ITEM(args, 0);
579579
PyObject *arguments = PyTuple_GET_ITEM(args, 1);
580580

581581
// almost the same as Py_GenericAlias' code, but to assign to self

0 commit comments

Comments
 (0)