From 741a85cfaf1d6d2bfb22a11609ba6237393f3d78 Mon Sep 17 00:00:00 2001 From: Michael Yochpaz <8832013+MichaelYochpaz@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:14:58 +0200 Subject: [PATCH] pre-commit --- demisto_sdk/commands/common/git_util.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/demisto_sdk/commands/common/git_util.py b/demisto_sdk/commands/common/git_util.py index 7f5d9e9acd..d065efa6d1 100644 --- a/demisto_sdk/commands/common/git_util.py +++ b/demisto_sdk/commands/common/git_util.py @@ -629,7 +629,9 @@ def _get_all_changed_files(self, prev_ver: str = "") -> Set[Path]: self.fetch() except Exception as e: - logger.warning("Failed to fetch remote branch. Continuing without fetching.") + logger.warning( + "Failed to fetch remote branch. Continuing without fetching." + ) logger.debug(f"Error: {e}") remote, branch = self.handle_prev_ver(prev_ver)