We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68124be commit 949a79cCopy full SHA for 949a79c
3 files changed
src/openstack_mcp_server/tools/response/block_storage.py
@@ -18,4 +18,4 @@ class Volume(BaseModel):
18
is_bootable: bool | None = None
19
is_encrypted: bool | None = None
20
description: str | None = None
21
- attachments: list[VolumeAttachment] = []
+ attachments: list[VolumeAttachment] = []
src/openstack_mcp_server/tools/response/identity.py
@@ -7,6 +7,7 @@ class Region(BaseModel):
7
id: str
8
description: str = ""
9
10
+
11
class Domain(BaseModel):
12
13
name: str
tests/conftest.py
@@ -62,6 +62,7 @@ def mock_openstack_connect_network():
62
):
63
yield mock_conn
64
65
66
@pytest.fixture
67
def mock_get_openstack_conn_block_storage():
68
"""Mock get_openstack_conn function for block_storage_tools."""
0 commit comments