mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-08-03 20:32:51 +08:00
Summary: Address black + isort fbsource linter warnings from D20558374 (previous diff) Reviewed By: nikhilaravi Differential Revision: D20558373 fbshipit-source-id: d3607de4a01fb24c0d5269634563a7914bddf1c8
8 lines
200 B
Python
8 lines
200 B
Python
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
|
|
|
|
from .ico_sphere import ico_sphere
|
|
from .torus import torus
|
|
|
|
|
|
__all__ = [k for k in globals().keys() if not k.startswith("_")]
|