Skip to content

Commit

Permalink
Fix module add
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Oct 15, 2024
1 parent 7301451 commit 922ff7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyo3-object_store/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub fn register_store_module(
) -> PyResult<()> {
let full_module_string = format!("{}.store", parent_module_str);

let child_module = PyModule::new_bound(parent_module.py(), full_module_string.as_str())?;
let child_module = PyModule::new_bound(parent_module.py(), "store")?;

child_module.add_class::<PyAzureStore>()?;
child_module.add_class::<PyGCSStore>()?;
Expand Down

0 comments on commit 922ff7c

Please sign in to comment.