Skip to content

Commit 8c266c4

Browse files
committed
chore(get_current_pane): Fix typing
1 parent a83f07f commit 8c266c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tmuxp/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def oh_my_zsh_auto_title() -> None:
8484
)
8585

8686

87-
def get_current_pane(server: "Server") -> t.Optional[t.Dict[str, str]]:
87+
def get_current_pane(server: "Server") -> t.Optional["Pane"]:
8888
"""Return Pane if one found in env"""
8989
if os.getenv("TMUX_PANE") is not None:
9090
try:

0 commit comments

Comments
 (0)