pycheckout: register checkout module in populate_module

Reviewed By: DurhamG

Differential Revision: D26470216

fbshipit-source-id: cdfda074256ba7dbf90d807904bab9a3b8142a98
This commit is contained in:
Andrey Chursin 2021-02-17 12:00:18 -08:00 committed by Facebook GitHub Bot
parent 6498f4f892
commit ceee768281

View File

@ -21,6 +21,7 @@ pub(crate) fn populate_module(py: Python<'_>, module: &PyModule) -> PyResult<PyN
"bookmarkstore",
pybookmarkstore::init_module(py, &name)?,
)?;
m.add(py, "checkout", pycheckout::init_module(py, &name)?)?;
m.add(py, "cliparser", pycliparser::init_module(py, &name)?)?;
m.add(py, "configparser", pyconfigparser::init_module(py, &name)?)?;
m.add(py, "dag", pydag::init_module(py, &name)?)?;