mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-21 22:15:13 +01:00
Removed unnecessary trait bounds
This commit is contained in:
parent
f8be5ccd8c
commit
2f08590685
1 changed files with 2 additions and 2 deletions
|
@ -436,8 +436,8 @@ where
|
|||
update_listener_error_handler: Arc<Eh>,
|
||||
mut stop_token: Option<StopToken>,
|
||||
) where
|
||||
UListener: UpdateListener + Send + 'a,
|
||||
Eh: ErrorHandler<UListener::Err> + Send + Sync + 'a,
|
||||
UListener: UpdateListener + 'a,
|
||||
Eh: ErrorHandler<UListener::Err> + 'a,
|
||||
UListener::Err: Debug,
|
||||
{
|
||||
self.state.start_dispatching();
|
||||
|
|
Loading…
Reference in a new issue