rspec/rules/S3516/python/rule.adoc
Arseniy Zaostrovnykh 7ca29f686f Force linebreaks
2021-02-02 15:02:10 +01:00

15 lines
458 B
Plaintext

When a function is designed to return an invariant value, it may be poor design, but it shouldn't adversely affect the outcome of your program. However, when it happens on all paths through the logic, it is surely a bug.
This rule raises an issue when a function contains several return statements that all return the same value.
== Noncompliant Code Example
----
def foo(a): # NonCompliant
b = 12
if a == 1:
return b
return b
----