Skip to content

Commit

Permalink
Remove needless lifetime on private impl
Browse files Browse the repository at this point in the history
  • Loading branch information
spencewenski committed Nov 4, 2024
1 parent 3ef44e9 commit ce7fd98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/worker/sidekiq/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ trait RedisCommands {
}

#[async_trait]
impl<'a> RedisCommands for PooledConnection<'a, RedisConnectionManager> {
impl RedisCommands for PooledConnection<'_, RedisConnectionManager> {
async fn zrange(
&mut self,
key: String,
Expand Down

0 comments on commit ce7fd98

Please sign in to comment.