diff --git a/src/python/module.cpp b/src/python/module.cpp index f651877..d7c1573 100644 --- a/src/python/module.cpp +++ b/src/python/module.cpp @@ -30,6 +30,10 @@ namespace simde { PYBIND11_MODULE(simde, m) { m.doc() = "PySimDE: Python bindings for the Simulation development environment"; + + // Import dependencies + python_module_type::import("chemist"); + export_chemical_system(m); export_basis_set(m); export_energy(m); diff --git a/tests/python/unit_tests/test_property_type.py b/tests/python/unit_tests/test_property_type.py index 766bc25..533b8ea 100644 --- a/tests/python/unit_tests/test_property_type.py +++ b/tests/python/unit_tests/test_property_type.py @@ -14,8 +14,6 @@ import unittest -import pluginplay as pp # noqa F401, needed for inputs() and results() - class BaseTestPropertyType(unittest.TestCase): def setUp(self):