rspec/rules/S1226/python/rule.adoc
2020-06-30 17:16:12 +02:00

9 lines
360 B
Plaintext

While it is technically correct to assign to parameters from within function bodies, doing so before the parameter value is read is likely a bug. Instead, initial values of parameters should be, if not treated as read-only, then at least read before reassignment.
== Noncompliant Code Example
----
def foo(strings, param):
param = 1 # NonCompliant
----