Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions i3ipc/replies.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,9 @@ class VersionReply(_BaseReply):
:vartype human_readable: str
:ivar loaded_config_file_name: The current config path.
:vartype loaded_config_file_name: str
:ivar variant: (sway only) The string "sway," to disambiguate Sway and i3
versions.
:vartype variant: str from Sway, or :class:`None` from i3
:ivar ipc_data: The raw data from the i3 ipc.
:vartype ipc_data: dict
"""
Expand All @@ -253,6 +256,7 @@ class VersionReply(_BaseReply):
('patch', int),
('human_readable', str),
('loaded_config_file_name', str),
('variant', str),
]


Expand Down