if conditions must have different code blocks
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。
ID: python-best-practices/condition-similar-block
Language: Python
Severity: Warning
Category: Best Practices
Description
Code in the branches of an if
condition must be unique. If you have duplicated branches, merge the conditions.
Non-Compliant Code Examples
if foo:
printf("bar")
elif baz:
printf("bar2")
elif bap:
# same code than the if condition
printf("bar")
else:
# same code than the if condition
printf("bar")
Compliant Code Examples
if foo:
printf("bar")
elif baz:
printf("bar2")
elif bap:
printf("bar3")
else:
printf("bar4")
Seamless integrations. Try Datadog Code Analysis