Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2023-12-06 22:58:09 +01:00 committed by GitHub
parent 74d85a5383
commit b594e9570a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ Questions to [David Rotermund](mailto:davrot@uni-bremen.de)
# The recommendations # The recommendations
*Comparisons to singletons like None should always be done with is or is not, never the equality operators. * Comparisons to singletons like None should always be done with is or is not, never the equality operators.
*Use is not operator rather than not ... is. While both expressions are functionally identical, the former is more readable and preferred: *Use is not operator rather than not ... is. While both expressions are functionally identical, the former is more readable and preferred:
```python ```python