[utils] HTTPHeaderDict: Fix __ior__ (#16930)

Authored by: doe1080
This commit is contained in:
doe1080
2026-06-11 16:43:24 +02:00
committed by GitHub
parent e47691215f
commit cb309b3293
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ class HTTPHeaderDict(dict):
other = other.sensitive()
if isinstance(other, dict):
self.update(other)
return
return self
return NotImplemented
def __or__(self, other, /) -> typing.Self: