rspec/rules/S117/python/rule.adoc

10 lines
146 B
Plaintext
Raw Normal View History

2020-06-30 10:16:44 +02:00
include::../description.adoc[]
== Exceptions
Loop counters are ignored by this rule.
----
for i in range(limit): # Compliant
print(i)
----