`import moabb` takes quite some time to run because many dependancies are being imported and lots of code is being run. [Lazy imports](https://docs.python.org/3.15/reference/simple_stmts.html#lazy) will soon arrive with python 3.15, and it should help solve this issue! We should use lazy imports whenever possible
import moabbtakes quite some time to run because many dependancies are being imported and lots of code is being run.Lazy imports will soon arrive with python 3.15, and it should help solve this issue!
We should use lazy imports whenever possible