remove redundant '!!'
[enigma2.git] / lib / base / ebase.cpp
index 03f50ccc62ebc3906259fa53220b276f3a671d98..01ee6a5386fc3a4a74d77d00e92ba6a37af6b1ae 100644 (file)
@@ -443,7 +443,7 @@ static PyObject *
 eTimerPy_is_active(eTimerPy* self)
 {
        PyObject *ret = NULL;
 eTimerPy_is_active(eTimerPy* self)
 {
        PyObject *ret = NULL;
-       ret = !!self->tm->isActive() ? Py_True : Py_False;
+       ret = self->tm->isActive() ? Py_True : Py_False;
        Org_Py_INCREF(ret);
        return ret;
 }
        Org_Py_INCREF(ret);
        return ret;
 }