Skip to content

Commit 9680a4d

Browse files
committed
chore(ruff): Manually fix E501 Line too long after ruff pass
src/tmuxp/workspace/finders.py:194:89: E501 Line too long (97 > 88) src/tmuxp/workspace/finders.py:210:89: E501 Line too long (103 > 88)
1 parent 7b2ea42 commit 9680a4d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/tmuxp/workspace/finders.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,8 @@ def find_workspace_file(
191191
]
192192
if not len(candidates):
193193
file_error = (
194-
f"workspace-file not found in workspace dir (yaml/yml/json) {workspace_dir} "
195-
"for name"
194+
"workspace-file not found "
195+
+ f"in workspace dir (yaml/yml/json) {workspace_dir} for name"
196196
)
197197
else:
198198
candidates = [
@@ -207,7 +207,8 @@ def find_workspace_file(
207207
if len(candidates) > 1:
208208
tmuxp_echo(
209209
Fore.RED
210-
+ f"Multiple .tmuxp.{{yml,yaml,json}} workspace_files in {dirname(workspace_file)}"
210+
+ "Multiple .tmuxp.{yml,yaml,json} workspace_files in "
211+
+ dirname(workspace_file)
211212
+ Fore.RESET,
212213
)
213214
tmuxp_echo(

0 commit comments

Comments
 (0)