rspec/rules/S122/python/rule.adoc

15 lines
163 B
Plaintext
Raw Normal View History

2020-06-30 10:16:44 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
if (True): print("hello")
----
== Compliant Solution
----
if (True):
print("hello")
----