Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fd7e496

Browse files
committed
Fix indentation.
1 parent c66ed45 commit fd7e496

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

Objects/structseq.c

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -175,27 +175,27 @@ structseq_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
175175
if (min_len != max_len) {
176176
if (len < min_len) {
177177
PyErr_Format(PyExc_TypeError,
178-
"%.500s() takes an at least %zd-sequence (%zd-sequence given)",
179-
type->tp_name, min_len, len);
180-
Py_DECREF(arg);
181-
return NULL;
178+
"%.500s() takes an at least %zd-sequence (%zd-sequence given)",
179+
type->tp_name, min_len, len);
180+
Py_DECREF(arg);
181+
return NULL;
182182
}
183183

184184
if (len > max_len) {
185185
PyErr_Format(PyExc_TypeError,
186-
"%.500s() takes an at most %zd-sequence (%zd-sequence given)",
187-
type->tp_name, max_len, len);
188-
Py_DECREF(arg);
189-
return NULL;
186+
"%.500s() takes an at most %zd-sequence (%zd-sequence given)",
187+
type->tp_name, max_len, len);
188+
Py_DECREF(arg);
189+
return NULL;
190190
}
191191
}
192192
else {
193193
if (len != min_len) {
194194
PyErr_Format(PyExc_TypeError,
195-
"%.500s() takes a %zd-sequence (%zd-sequence given)",
196-
type->tp_name, min_len, len);
197-
Py_DECREF(arg);
198-
return NULL;
195+
"%.500s() takes a %zd-sequence (%zd-sequence given)",
196+
type->tp_name, min_len, len);
197+
Py_DECREF(arg);
198+
return NULL;
199199
}
200200
}
201201

0 commit comments

Comments
 (0)