All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.py.rules.python.OneStatementPerLine.html Maven / Gradle / Ivy

For better readability, do not put more than one statement on a single line.

Noncompliant Code Example

if (True): print("hello")

Compliant Solution

if (True):
    print("hello")




© 2015 - 2025 Weber Informatics LLC | Privacy Policy