Fix =/== error in ManualDictLookup (#3117)

This commit is contained in:
Rupert Tombs 2023-02-22 15:14:30 +00:00 committed by GitHub
parent ffd8e958fc
commit 817d0b4902
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 28 deletions

View file

@ -91,9 +91,9 @@ define_violation!(
///
/// ### Example
/// ```python
/// if x = 1:
/// if x == 1:
/// return "Hello"
/// elif x = 2:
/// elif x == 2:
/// return "Goodbye"
/// else:
/// return "Goodnight"