We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbe9012 commit 9f7ae58Copy full SHA for 9f7ae58
scripts/auto_release/main.py
@@ -244,7 +244,7 @@ def check_file_with_packaging_tool(self):
244
print_check(f"pip install {self.get_whl_package} --force-reinstall")
245
module = importlib.import_module(self.whole_package_name.replace("-", "."))
246
title = ""
247
- for item in getattr(module, "__all__"):
+ for item in getattr(module, "__all__", []):
248
if item.endswith("Client"):
249
title = item
250
break
0 commit comments