Commit da0c356b authored by Mogab Elleithy's avatar Mogab Elleithy
Browse files

Fix __init__.py file to import from local "examples" dir.

Without this fix, importing torch_harmonics had run into a module import error
when trying to execute:
```import examples```
parent 855297ae
...@@ -34,4 +34,4 @@ __version__ = '0.6.1' ...@@ -34,4 +34,4 @@ __version__ = '0.6.1'
from .sht import RealSHT, InverseRealSHT, RealVectorSHT, InverseRealVectorSHT from .sht import RealSHT, InverseRealSHT, RealVectorSHT, InverseRealVectorSHT
from . import quadrature from . import quadrature
from . import random_fields from . import random_fields
import examples from . import examples
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment