Skip to content

Commit 4b95fd5

Browse files
committed
chore(mypy): Add typings for workspace/loader
1 parent 071ec81 commit 4b95fd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tmuxp/workspace/loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def expandshell(value: str) -> str:
3030
return os.path.expandvars(os.path.expanduser(value)) # NOQA: PTH111
3131

3232

33-
def expand_cmd(p: t.Dict) -> t.Dict:
33+
def expand_cmd(p: t.Dict[str, t.Any]) -> t.Dict[str, t.Any]:
3434
if isinstance(p, str):
3535
p = {"shell_command": [p]}
3636
elif isinstance(p, list):

0 commit comments

Comments
 (0)