Skip to content

Commit d988b76

Browse files
Fix lints
1 parent bb94990 commit d988b76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "open-edison"
3-
version = "0.1.52"
3+
version = "0.1.53"
44
description = "Open-source MCP security, aggregation, and monitoring. Single-user, self-hosted MCP proxy."
55
readme = "README.md"
66
authors = [

src/setup_tui/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def run(*, dry_run: bool = False, skip_oauth: bool = False) -> None:
173173
show_welcome_screen(dry_run=dry_run)
174174
# Additional setup steps will be added here
175175

176-
mcp_clients = list(sorted(detect_clients(), key=lambda x: x.value))
176+
mcp_clients = sorted(detect_clients(), key=lambda x: x.value)
177177

178178
configs: list[MCPServerConfig] = []
179179

0 commit comments

Comments
 (0)