Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Metadata

ID: python-best-practices/no-double-not

Language: Python

Severity: Warning

Category: Error Prone

Description

Do not use two negation. It makes the code more complex to read and understand. Instead of using two negation, use the expression directly.

Non-Compliant Code Examples

if not not foo:  # just use if foo
	pass

Compliant Code Examples

if not foo:
	pass