summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/boolobject.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Objects/boolobject.c b/Objects/boolobject.c
index ab7669c..b786966 100644
--- a/Objects/boolobject.c
+++ b/Objects/boolobject.c
@@ -72,9 +72,9 @@ bool_vectorcall(PyObject *type, PyObject * const*args,
assert(PyType_Check(type));
if (nargs) {
ok = PyObject_IsTrue(args[0]);
- }
- if (ok < 0) {
- return NULL;
+ if (ok < 0) {
+ return NULL;
+ }
}
return PyBool_FromLong(ok);
}