Small cleanup (#841)

This commit is contained in:
Alex Gaynor 2024-07-22 12:44:27 -04:00 committed by GitHub
parent 65e08f7845
commit 11961aff4d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -181,13 +181,7 @@ mod _bcrypt {
use pyo3::types::PyModuleMethods;
#[pymodule_export]
use super::checkpw;
#[pymodule_export]
use super::gensalt;
#[pymodule_export]
use super::hashpw;
#[pymodule_export]
use super::kdf;
use super::{checkpw, gensalt, hashpw, kdf};
// Not yet possible to add constants declaratively.
#[pymodule_init]