Skip to content

Commit

Permalink
fix: correct python module name
Browse files Browse the repository at this point in the history
  • Loading branch information
emgeee committed Oct 30, 2024
1 parent 95233e2 commit 6bc2bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-denormalized/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub mod utils;
pub(crate) struct TokioRuntime(tokio::runtime::Runtime);

/// A Python module implemented in Rust.
#[pymodule]
#[pymodule(name="_internal")]
fn _py_denormalized_internal(py: Python, m: Bound<'_, PyModule>) -> PyResult<()> {
m.add_class::<datastream::PyDataStream>()?;
m.add_class::<context::PyContext>()?;
Expand Down

0 comments on commit 6bc2bbd

Please sign in to comment.