From 18092db1c856fc126ca8857818b909150a59520e Mon Sep 17 00:00:00 2001 From: alexAubin <4533074+alexAubin@users.noreply.github.com> Date: Sat, 22 Jun 2024 23:15:07 +0000 Subject: [PATCH] :art: Format Python code with Black --- src/utils/resources.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/utils/resources.py b/src/utils/resources.py index de05eee9c..3e41044ea 100644 --- a/src/utils/resources.py +++ b/src/utils/resources.py @@ -162,17 +162,17 @@ class AppResource: and manager.wanted and manager.wanted.get("integration", {}).get("helpers_version") ): - self.helpers_version = float(manager.wanted.get("integration", {}).get( - "helpers_version" - )) + self.helpers_version = float( + manager.wanted.get("integration", {}).get("helpers_version") + ) elif ( manager and manager.current and manager.current.get("integration", {}).get("helpers_version") ): - self.helpers_version = float(manager.current.get("integration", {}).get( - "helpers_version" - )) + self.helpers_version = float( + manager.current.get("integration", {}).get("helpers_version") + ) elif manager and manager.wanted and manager.wanted.get("packaging_format"): self.helpers_version = float(manager.wanted.get("packaging_format")) elif manager and manager.current and manager.current.get("packaging_format"):