We could add a macro that automatically does the following, so that users don't forget to do `xt::import_numpy()` which results in weird segfaults. ``` PYBIND11_MODULE(mymodule, m) { xt::import_numpy(); } ```