Skip to content

Commit ef2d254

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 73742b5 commit ef2d254

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

multidict/_multidict_py.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -753,9 +753,7 @@ def __contains__(self, key: object) -> bool:
753753

754754
@reprlib.recursive_repr()
755755
def __repr__(self) -> str:
756-
body = ", ".join(
757-
f"{e.key!r}: {e.value!r}" for e in self._keys.iter_entries()
758-
)
756+
body = ", ".join(f"{e.key!r}: {e.value!r}" for e in self._keys.iter_entries())
759757
return f"<{self.__class__.__name__}({body})>"
760758

761759
if sys.implementation.name != "pypy":

0 commit comments

Comments
 (0)