Skip to content

Commit 26c46c7

Browse files
committed
Revert "nit"
This reverts commit fa2505a.
1 parent 6c8d856 commit 26c46c7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Objects/dictobject.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3322,7 +3322,8 @@ _PyDict_FromKeys(PyObject *cls, PyObject *iterable, PyObject *value)
33223322

33233323
if (PyAnyDict_CheckExact(d)) {
33243324
while ((key = PyIter_Next(it)) != NULL) {
3325-
status = anydict_setitem_take2((PyDictObject *)d, key, Py_NewRef(value));
3325+
status = anydict_setitem_take2((PyDictObject *)d,
3326+
key, Py_NewRef(value));
33263327
if (status < 0) {
33273328
assert(PyErr_Occurred());
33283329
goto Fail;

0 commit comments

Comments
 (0)