Why is this an issue?

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")