ahnobari
commited on
Commit
•
1739e54
1
Parent(s):
5433743
init
Browse files- __init__.py +4 -2
__init__.py
CHANGED
@@ -1,7 +1,9 @@
|
|
1 |
-
from bikefusion import *
|
2 |
import os
|
3 |
|
4 |
current_dir = os.path.dirname(os.path.abspath(__file__))
|
5 |
|
6 |
def load_bikefusion():
|
7 |
-
return load_bikefusion_and_data(current_dir)
|
|
|
|
|
|
1 |
+
from .bikefusion import *
|
2 |
import os
|
3 |
|
4 |
current_dir = os.path.dirname(os.path.abspath(__file__))
|
5 |
|
6 |
def load_bikefusion():
|
7 |
+
return load_bikefusion_and_data(current_dir)
|
8 |
+
|
9 |
+
__all__ = [name for name in dir() if not name.startswith("_") and name not in {"os"}]
|