Skip to content

Commit 7169008

Browse files
committed
chore: Fix formatting issue
src/libtmux/server.py:618:89: E501 Line too long (89 > 88) | 616 | if self.socket_path is not None: 617 | return f"{self.__class__.__name__}(socket_path={self.socket_path})" 618 | return f"{self.__class__.__name__}(socket_path=/tmp/tmux-{os.geteuid()}/default)" | ^ E501 619 | 620 | # | Found 1 error.
1 parent 52a0109 commit 7169008

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/libtmux/server.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,9 @@ def __repr__(self) -> str:
615615
)
616616
if self.socket_path is not None:
617617
return f"{self.__class__.__name__}(socket_path={self.socket_path})"
618-
return f"{self.__class__.__name__}(socket_path=/tmp/tmux-{os.geteuid()}/default)"
618+
return (
619+
f"{self.__class__.__name__}(socket_path=/tmp/tmux-{os.geteuid()}/default)"
620+
)
619621

620622
#
621623
# Legacy: Redundant stuff we want to remove

0 commit comments

Comments
 (0)