Skip to content

Commit 09c34ba

Browse files
committed
chore(Server): Fix docstrings
1 parent 013f1a9 commit 09c34ba

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

libtmux/server.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -60,18 +60,18 @@ class Server(TmuxRelationalObject, EnvironmentMixin):
6060
Accessed April 1st, 2018.
6161
"""
6262

63-
#: ``[-L socket-name]``
6463
socket_name = None
65-
#: ``[-S socket-path]``
64+
"""Passthrough to ``[-L socket-name]``"""
6665
socket_path = None
67-
#: ``[-f file]``
66+
"""Passthrough to ``[-S socket-path]``"""
6867
config_file = None
69-
#: ``-2`` or ``-8``
68+
"""Passthrough to ``[-f file]``"""
7069
colors = None
71-
#: unique child ID used by :class:`~libtmux.common.TmuxRelationalObject`
70+
"""``-2`` or ``-8``"""
7271
child_id_attribute = "session_id"
73-
#: namespace used :class:`~libtmux.common.TmuxMappingObject`
72+
"""Unique child ID used by :class:`~libtmux.common.TmuxRelationalObject`"""
7473
formatter_prefix = "server_"
74+
"""Namespace used for :class:`~libtmux.common.TmuxMappingObject`"""
7575

7676
def __init__(
7777
self,

0 commit comments

Comments
 (0)