Skip to content

Commit

Permalink
chore(ruff): Manually fix E501 Line too long after ruff pass
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
tony committed Apr 27, 2024
1 parent 7b2ea42 commit 9680a4d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/tmuxp/workspace/finders.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ def find_workspace_file(
]
if not len(candidates):
file_error = (
f"workspace-file not found in workspace dir (yaml/yml/json) {workspace_dir} "
"for name"
"workspace-file not found "
+ f"in workspace dir (yaml/yml/json) {workspace_dir} for name"
)
else:
candidates = [
Expand All @@ -207,7 +207,8 @@ def find_workspace_file(
if len(candidates) > 1:
tmuxp_echo(
Fore.RED
+ f"Multiple .tmuxp.{{yml,yaml,json}} workspace_files in {dirname(workspace_file)}"
+ "Multiple .tmuxp.{yml,yaml,json} workspace_files in "
+ dirname(workspace_file)
+ Fore.RESET,
)
tmuxp_echo(
Expand Down

0 comments on commit 9680a4d

Please sign in to comment.