Skip to content

Commit 56eb00a

Browse files
committed
chore(server): pydocstyle manual fixes
1 parent 4a30958 commit 56eb00a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/libtmux/server.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,7 @@ def panes(self) -> QueryList[Pane]: # type:ignore
559559
# Dunder
560560
#
561561
def __eq__(self, other: object) -> bool:
562+
"""Equal operator for :class:`Server` object."""
562563
if isinstance(other, Server):
563564
return (
564565
self.socket_name == other.socket_name
@@ -567,6 +568,7 @@ def __eq__(self, other: object) -> bool:
567568
return False
568569

569570
def __repr__(self) -> str:
571+
"""Representation of :class:`Server` object."""
570572
if self.socket_name is not None:
571573
return (
572574
f"{self.__class__.__name__}"

0 commit comments

Comments
 (0)