Files
specklepy/speckle/objects/__init__.py
T
Gergő Jedlicska 1114b210f9 refactor(objects module def): remove redundant subclass discovery code
With the automated subclass registry, there is no need for the magic module lookup in objects
__init__
2021-02-13 14:06:32 +01:00

6 lines
94 B
Python

"""Builtin Speckle object kit."""
from speckle.objects.base import Base
__all__ = ["Base"]