Skip to content

Commit a7213c4

Browse files
committed
fix(identity): Fix linter problem(#31)
1 parent 2bcdd27 commit a7213c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/openstack_mcp_server/tools/identity_tools.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ def get_region(self, id: str) -> Region:
5656

5757
return Region(id=region.id, description=region.description)
5858

59-
def create_region(self, id: str, description: str | None= None) -> Region:
59+
def create_region(self, id: str, description: str | None = None) -> Region:
6060
"""
6161
Create a new region.
6262
6363
:param id: The ID of the region.
64-
:param description: The description of the region.
64+
:param description: The description of the region.
6565
6666
:return: The created Region object.
6767
"""
@@ -150,7 +150,7 @@ def create_domain(
150150
self,
151151
name: str,
152152
description: str | None = None,
153-
is_enabled: bool | None = False,
153+
is_enabled: bool | None = False,
154154
) -> Domain:
155155
"""
156156
Create a new domain.

0 commit comments

Comments
 (0)