We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28b2962 commit 6790686Copy full SHA for 6790686
src/libtmux/exc.py
@@ -73,6 +73,14 @@ class WaitTimeout(LibTmuxException):
73
"""Function timed out without meeting condition"""
74
75
76
+class VariableUnpackingError(LibTmuxException):
77
+
78
+ """Error unpacking variable"""
79
80
+ def __init__(self, variable: t.Optional[t.Any] = None, *args: object):
81
+ return super().__init__(f"Unexpected variable: {variable!s}")
82
83
84
class PaneError(LibTmuxException):
85
"""Any type of pane related error"""
86
0 commit comments