ahnobari
commited on
Commit
•
b0acad0
1
Parent(s):
d7c069b
fixed small issue
Browse files- __init__.py +2 -1
__init__.py
CHANGED
@@ -3,6 +3,7 @@ import os
|
|
3 |
|
4 |
current_dir = os.path.dirname(os.path.abspath(__file__))
|
5 |
|
6 |
-
load_bikefusion
|
|
|
7 |
|
8 |
__all__ = [name for name in dir() if not name.startswith("_") and name not in {"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"}]
|