Update tmux.py to fix invalid < comparison between string and int

Fix   
```
File "/usr/lib/python3.11/site-packages/powerline/segments/tmux.py", line 22, in attached_clients
    return None if attached_count < minimum else str(attached_count)
                   ^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: '<' not supported between instances of 'int' and 'str'
```
This commit is contained in:
pallaswept 2023-10-05 05:07:58 +11:00 committed by GitHub
parent 833f30e88e
commit 1c43b3af31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,4 +19,4 @@ def attached_clients(pl, minimum=1):
attached_clients_output = get_tmux_output(pl, 'list-clients', '-t', session_name)
attached_count = len(attached_clients_output.rstrip().split('\n'))
return None if attached_count < minimum else str(attached_count)
return None if attached_count < int(minimum) else str(attached_count)