Skip to content

Commit 7cfe8a2

Browse files
committed
fix identifiers
1 parent 4f14f2c commit 7cfe8a2

File tree

6 files changed

+2
-203
lines changed

6 files changed

+2
-203
lines changed

python/Cargo.toml

Lines changed: 0 additions & 20 deletions
This file was deleted.

python/README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

python/pyproject.toml

Lines changed: 0 additions & 23 deletions
This file was deleted.

python/src/lib.rs

Lines changed: 0 additions & 10 deletions
This file was deleted.

python/src/pyreason.rs

Lines changed: 0 additions & 147 deletions
This file was deleted.

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ mod pyreason;
2828
use pyo3::prelude::*;
2929
#[cfg(feature = "python")]
3030
#[pymodule]
31-
fn pyreasonable(_py: Python<'_>, module: &PyModule) -> PyResult<()> {
32-
module.add("__package__", "pyreasonable")?;
31+
fn reasonable(_py: Python<'_>, module: &PyModule) -> PyResult<()> {
32+
module.add("__package__", "reasonable")?;
3333
module.add("__version__", env!("CARGO_PKG_VERSION"))?;
3434
module.add_class::<pyreason::PyReasoner>()?;
3535
Ok(())

0 commit comments

Comments
 (0)