Skip to content

Commit 675372d

Browse files
committed
update
1 parent f2702f0 commit 675372d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tools/azure-sdk-tools/packaging_tools/package_utils.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,15 @@ def next_version(self) -> str:
174174
if self._next_version is None:
175175
self._next_version = self.calculate_next_version()
176176
return self._next_version
177-
177+
178178
@property
179179
def extract_client_title_from_init(self) -> str:
180180
"""
181181
Extract the client title from a package's __init__.py file.
182-
182+
183183
Args:
184184
package_name (str): The package name (e.g., "azure-mgmt-compute")
185-
185+
186186
Returns:
187187
str: The client title if found, empty string otherwise
188188
"""
@@ -203,7 +203,7 @@ def extract_client_title_from_init(self) -> str:
203203
return elt.value
204204
except Exception as e:
205205
_LOGGER.info(f"Failed to extract title from {init_file}: {e}")
206-
206+
207207
return ""
208208

209209
# Use the template to update readme and setup by packaging_tools

0 commit comments

Comments
 (0)