feat: Add Cube2Sphere to module exports

Includes the Cube2Sphere class in the module's exports to
facilitate easy import for users. Enhances usability by
enabling direct import from the module's top level.
This commit is contained in:
Kumi 2024-12-13 10:20:27 +01:00
parent 874e986b51
commit 1296d51ee7
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -1 +1,4 @@
__author__ = 'Xyene'
from .cube2sphere import Cube2Sphere
__author__ = 'Xyene'
__all__ = ['Cube2Sphere']