Skip to content

Commit 0ea413d

Browse files
chore: ruff I001 — split aliased imports in mcp/server.py
ruff check --fix output. Unblocks the test workflow on main, which had been failing on this file since the notebook MCP tool block landed. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 9778189 commit 0ea413d

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

stata_code/mcp/server.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,29 @@
6262
from stata_code.core._runtime import PystataNotAvailable, is_available
6363
from stata_code.core.notebook import (
6464
NotebookError,
65+
)
66+
from stata_code.core.notebook import (
6567
delete_cell as _notebook_delete_cell,
68+
)
69+
from stata_code.core.notebook import (
6670
edit_cell as _notebook_edit_cell,
71+
)
72+
from stata_code.core.notebook import (
6773
get_cell as _notebook_get_cell,
74+
)
75+
from stata_code.core.notebook import (
6876
insert_cell as _notebook_insert_cell,
77+
)
78+
from stata_code.core.notebook import (
6979
locate_cells as _notebook_locate_cells,
80+
)
81+
from stata_code.core.notebook import (
7082
outline_notebook as _notebook_outline,
7183
)
7284
from stata_code.core.run_index import (
7385
RunIndexError,
86+
)
87+
from stata_code.core.run_index import (
7488
list_runs as _list_runs,
7589
)
7690
from stata_code.core.runner import (

0 commit comments

Comments
 (0)