Skip to content

Commit 96d9cc1

Browse files
Apply suggestion from @Copilot
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent d1d0afb commit 96d9cc1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/seclab_taskflow_agent/path_utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ def mcp_data_dir(packagename: str, mcpname: str, env_override: str | None) -> Pa
2424
return Path(p)
2525
# Use [platformdirs](https://pypi.org/project/platformdirs/) to
2626
# choose an appropriate location.
27-
d = platformdirs.user_data_dir(appname = "seclab-taskflow-agent",
28-
appauthor = "GitHubSecurityLab",
29-
ensure_exists = True)
27+
d = platformdirs.user_data_dir(appname="seclab-taskflow-agent",
28+
appauthor="GitHubSecurityLab",
29+
ensure_exists=True)
3030
# Each MCP server gets its own sub-directory
3131
p = Path(d).joinpath(packagename).joinpath(mcpname)
3232
p.mkdir(parents=True, exist_ok=True)

0 commit comments

Comments
 (0)