
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