Skip to content

Commit 1f1e1be

Browse files
Fix lints
1 parent a5b3f45 commit 1f1e1be

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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.54"
3+
version = "0.1.55"
44
description = "Open-source MCP security, aggregation, and monitoring. Single-user, self-hosted MCP proxy."
55
readme = "README.md"
66
authors = [

src/mcp_importer/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
from pathlib import Path
66
from typing import Any
77

8+
import questionary
89
from fastmcp import Client as FastMCPClient
910
from fastmcp import FastMCP
1011
from fastmcp.client.auth.oauth import FileTokenStorage
11-
import questionary
1212
from loguru import logger as log # kept for non-TUI contexts; printing used in TUI flows
1313

1414
from src.config import Config, MCPServerConfig, get_config_json_path

src/setup_tui/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def show_manual_setup_screen() -> None:
170170
print(after_text)
171171

172172

173-
def run(*, dry_run: bool = False, skip_oauth: bool = False) -> None:
173+
def run(*, dry_run: bool = False, skip_oauth: bool = False) -> None: # noqa: C901
174174
"""Run the complete setup process."""
175175
# Suppress loguru output for a cleaner TUI experience
176176
import contextlib

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)