Remove unnecessary PartialEq trait constraint on DiffFeedback observers (#1811)

This commit is contained in:
Josef Haider 2024-01-22 20:23:32 +01:00 committed by GitHub
parent 72c862171e
commit 058d2c0825
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -120,7 +120,7 @@ where
F: FnMut(&O1, &O2) -> DiffResult,
I: Input,
S: HasMetadata + State<Input = I>,
O1: Observer<S> + PartialEq<O2>,
O1: Observer<S>,
O2: Observer<S>,
{
#[allow(clippy::wrong_self_convention)]