Skip to content

Commit

Permalink
Fix Clippy (elide a lifetime)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChayimFriedman2 committed Aug 25, 2024
1 parent 2e310c2 commit 7b3872a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/instance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1485,7 +1485,7 @@ impl<T> Py<T> {
/// Calls the object with only positional arguments.
///
/// This is equivalent to the Python expression `self(*args)`.
pub fn call1<'py, N>(&self, py: Python<'py>, args: N) -> PyResult<PyObject>
pub fn call1<N>(&self, py: Python<'_>, args: N) -> PyResult<PyObject>
where
N: IntoPy<Py<PyTuple>>,
{
Expand Down

0 comments on commit 7b3872a

Please sign in to comment.