diff --git a/binding/python/pyproject.toml b/binding/python/pyproject.toml index 0ae3f587..f7470a91 100644 --- a/binding/python/pyproject.toml +++ b/binding/python/pyproject.toml @@ -10,7 +10,7 @@ features = ["include-python-workspace"] [project] name = "raftify" requires-python = ">=3.10" -description = "" +description = "Experimental Async Raft framework for Python application" readme = "README.md" license = { file = "LICENSE" } classifiers = [ diff --git a/binding/python/src/bindings/peers.rs b/binding/python/src/bindings/peers.rs index 2c477835..283472ec 100644 --- a/binding/python/src/bindings/peers.rs +++ b/binding/python/src/bindings/peers.rs @@ -1,7 +1,7 @@ use fxhash::FxHasher; use pyo3::{ prelude::*, - types::{PyDict, PyString, PyTuple}, + types::{PyDict, PyString}, }; use raftify::Peers; use std::{collections::HashMap, hash::BuildHasherDefault};