Skip to content

Commit

Permalink
Fix long line
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Oct 8, 2022
1 parent 0abd2dc commit 7c49e12
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion zipp.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ def __setstate__(self, state):
self.__dict__.update(state)

def __repr__(self):
return f"{self.__class__.__name__}(class={self._class}, args={self._args}, kwargs={self._kwargs})"
args = f"class={self._class}, args={self._args}, kwargs={self._kwargs}"
return f"{self.__class__.__name__}({args})"

def __eq__(self, other):
return (
Expand Down

0 comments on commit 7c49e12

Please sign in to comment.