check equal is used on consistent basic types

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

Metadata

ID: python-best-practices/equal-basic-types

Language: Python

Severity: Warning

Category: Error Prone

Description

When comparing basic types (string, integer, float), we should always values of the same types.

Non-Compliant Code Examples

1 == "1"  # Comparing an integer and a string
1.0 == "foo"  # Comparing a float and a string

Compliant Code Examples

1 == 1
"abc" == "def"
a == 1
a == b
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis