Skip to content

Fix typo in __init__.py: 'all' variable should be '__all__' #853

@Hyeongbhin-Cho

Description

@Hyeongbhin-Cho

Describe the bug
In gsplat/__init__.py, the list of exported modules is assigned to the variable all instead of the standard __all__.

To Reproduce
Check line 34 of gsplat/__init__.py.

# Current code
all = [
    "PngCompression",
    ...
]

# Fixed code
__all__ = [
    "PngCompression",
    ...
]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions