From 573168a50bfe2131efc1d76644ac9057b57afcd1 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 10 Sep 2022 10:39:28 -0500 Subject: [PATCH] docs(Server): Use explicit fqdn lookups --- libtmux/server.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/libtmux/server.py b/libtmux/server.py index a049f3b9e..1a9d05ba3 100644 --- a/libtmux/server.py +++ b/libtmux/server.py @@ -30,13 +30,15 @@ class Server(TmuxRelationalObject["Session", "SessionDict"], EnvironmentMixin): """ The :term:`tmux(1)` :term:`Server` [server_manual]_. - - :attr:`Server._sessions` [:class:`Session`, ...] + - :attr:`Server._sessions` [:class:`Session `, ...] - - :attr:`Session._windows` [:class:`Window`, ...] + - :attr:`Session._windows ` + [:class:`~libtmux.window.Window`, ...] - - :attr:`Window._panes` [:class:`Pane`, ...] + - :attr:`Window._panes ` + [:class:`~libtmux.pane.Pane`, ...] - - :class:`Pane` + - :class:`~libtmux.pane.Pane` When instantiated stores information on live, running tmux server.