We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Checks if value is false. 📰 📘
Similar: and_, or_, not_, xor.
not_(a) # a: a boolean
from extra_boolean import not_ not_(False) # True not_(True) # False