Skip to content

Commit f60ea8a

Browse files
whitespace
1 parent 050fa13 commit f60ea8a

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
@@ -580,7 +580,7 @@ ga_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
580580
if (!_PyArg_CheckPositional("GenericAlias", PyTuple_GET_SIZE(args), 2, 2)) {
581581
return NULL;
582582
}
583-
PyObject *origin = PyTuple_GET_ITEM(args, 0);
583+
PyObject *origin = PyTuple_GET_ITEM(args, 0);
584584
PyObject *arguments = PyTuple_GET_ITEM(args, 1);
585585

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

0 commit comments

Comments
 (0)