From 8550915528e518c002392059c792fde3eb2c2a99 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 28 Feb 2022 00:23:25 +0100 Subject: [PATCH] opimise coverage --- InvenTree/plugin/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/plugin/helpers.py b/InvenTree/plugin/helpers.py index 5afc8ea5fc..838dfeb275 100644 --- a/InvenTree/plugin/helpers.py +++ b/InvenTree/plugin/helpers.py @@ -123,7 +123,7 @@ def check_git_version(): if len(version) > 1 and version[0] == '2': if len(version) > 2 and int(version[1]) >= 22: return True - except ValueError: + except ValueError: # pragma: no cover pass return False