Skip to content

Commit b0b0b2b

Browse files
committed
build(deps): libtmux: Use experimental branch w/ dataclasses
1 parent 00827d3 commit b0b0b2b

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

poetry.lock

+17-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ tmuxp = 'tmuxp:cli.cli'
4747

4848
[tool.poetry.dependencies]
4949
python = "^3.7"
50-
libtmux = "~0.16.1"
50+
libtmux = {git = "https://github.com/tmux-python/libtmux", rev = "dataclass-basic"}
5151
colorama = ">=0.3.9"
5252
PyYAML = "^6.0"
5353

src/tmuxp/workspace/builder.py

-2
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,6 @@ def iter_create_panes(self, w, wconf):
421421
else:
422422

423423
def get_pane_start_directory():
424-
425424
if "start_directory" in pconf:
426425
return pconf["start_directory"]
427426
elif "start_directory" in wconf:
@@ -430,7 +429,6 @@ def get_pane_start_directory():
430429
return None
431430

432431
def get_pane_shell():
433-
434432
if "shell" in pconf:
435433
return pconf["shell"]
436434
elif "window_shell" in wconf:

0 commit comments

Comments
 (0)