Skip to content

Commit 573168a

Browse files
committed
docs(Server): Use explicit fqdn lookups
1 parent 5260a7e commit 573168a

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

libtmux/server.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,15 @@ class Server(TmuxRelationalObject["Session", "SessionDict"], EnvironmentMixin):
3030
"""
3131
The :term:`tmux(1)` :term:`Server` [server_manual]_.
3232
33-
- :attr:`Server._sessions` [:class:`Session`, ...]
33+
- :attr:`Server._sessions` [:class:`Session <libtmux.session.Session>`, ...]
3434
35-
- :attr:`Session._windows` [:class:`Window`, ...]
35+
- :attr:`Session._windows <libtmux.session.Session._windows>`
36+
[:class:`~libtmux.window.Window`, ...]
3637
37-
- :attr:`Window._panes` [:class:`Pane`, ...]
38+
- :attr:`Window._panes <libtmux.window.Window._panes>`
39+
[:class:`~libtmux.pane.Pane`, ...]
3840
39-
- :class:`Pane`
41+
- :class:`~libtmux.pane.Pane`
4042
4143
When instantiated stores information on live, running tmux server.
4244

0 commit comments

Comments
 (0)