Skip to content

Commit 25d5d6a

Browse files
fix: address lint error
1 parent 0f57d7a commit 25d5d6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/azure-cli-core/azure/cli/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ def _load_modules(self, args, command_modules):
568568
mod = future_to_module[future]
569569
logger.warning("Module '%s' load failed: %s", mod, ex)
570570
results.append(ModuleLoadResult(mod, {}, {}, 0, ex))
571-
except Exception as ex:
571+
except Exception as ex: # pylint: disable=broad-exception-caught
572572
mod = future_to_module[future]
573573
logger.warning("Module '%s' load failed with unexpected exception: %s", mod, ex)
574574
results.append(ModuleLoadResult(mod, {}, {}, 0, ex))

0 commit comments

Comments
 (0)