We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3facfaa commit f175a7bCopy full SHA for f175a7b
1 file changed
src/tmuxp/cli/utils.py
@@ -111,7 +111,12 @@ def __init__(
111
)
112
self.config_dir = config_dir
113
114
- def convert(self, value, param, ctx):
+ def convert(
115
+ self,
116
+ value: t.Any,
117
+ param: t.Optional[click.Parameter],
118
+ ctx: t.Optional[click.Context],
119
+ ) -> t.Any:
120
config_dir = self.config_dir
121
if callable(config_dir):
122
config_dir = config_dir()
0 commit comments