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

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

__all__ is used to define the list of module's names that should be imported when from package import * is used. For that reason, it may only contain strings.

Noncompliant Code Example

class MyClass:
    pass

__all__ = [
    MyClass  # Noncompliant
]

Compliant Solution

class MyClass:
    pass

__all__ = [
    "MyClass"
]

See





© 2015 - 2025 Weber Informatics LLC | Privacy Policy