Skip to content

Commit 949a79c

Browse files
committed
chore : ruff failure fix
1 parent 68124be commit 949a79c

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/openstack_mcp_server/tools/response/block_storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ class Volume(BaseModel):
1818
is_bootable: bool | None = None
1919
is_encrypted: bool | None = None
2020
description: str | None = None
21-
attachments: list[VolumeAttachment] = []
21+
attachments: list[VolumeAttachment] = []

src/openstack_mcp_server/tools/response/identity.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ class Region(BaseModel):
77
id: str
88
description: str = ""
99

10+
1011
class Domain(BaseModel):
1112
id: str
1213
name: str

tests/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def mock_openstack_connect_network():
6262
):
6363
yield mock_conn
6464

65+
6566
@pytest.fixture
6667
def mock_get_openstack_conn_block_storage():
6768
"""Mock get_openstack_conn function for block_storage_tools."""

0 commit comments

Comments
 (0)