ahnobari commited on
Commit
b0acad0
1 Parent(s): d7c069b

fixed small issue

Browse files
Files changed (1) hide show
  1. __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 = lambda: load_bikefusion_and_data(current_dir)
 
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"}]