Skip to content

Commit

Permalink
fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Jan 30, 2024
1 parent 17d235d commit d170dee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/chainlifter
url: https://pypi.org/p/agct
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
if: "startsWith(github.ref, 'refs/tags/')"
Expand Down
2 changes: 1 addition & 1 deletion rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ impl Converter {
/// agct._core Python module. Collect Python-facing methods.
#[pymodule]
#[pyo3(name = "_core")]
fn chainlifter(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
fn agct(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
m.add_class::<Converter>()?;
m.add("NoLiftoverError", _py.get_type::<NoLiftoverError>())?;
m.add("ChainfileError", _py.get_type::<ChainfileError>())?;
Expand Down

0 comments on commit d170dee

Please sign in to comment.