Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 035a9c0

Browse files
committed
lint
1 parent 68386fa commit 035a9c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/gridspec.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,8 @@ def __init__(self, left=None, bottom=None, right=None, top=None,
766766

767767
def _repr_pretty_(self, p: Any, cycle: bool) -> None:
768768
del cycle
769-
s = f"{self.__class__.__name__}(left={self.left}, bottom={self.bottom}, right={self.right}, top={self.top}, " + f"wspace={self.wspace}, hspace={self.hspace})\n"
769+
s = f"{self.__class__.__name__}(left={self.left}, bottom={self.bottom}, right={self.right}, top={self.top}, "
770+
s += f"wspace={self.wspace}, hspace={self.hspace})"
770771
p.text(s)
771772

772773
def update(self, left=None, bottom=None, right=None, top=None,

0 commit comments

Comments
 (0)