🎨 Format Python code with Black

This commit is contained in:
alexAubin 2024-06-22 23:15:07 +00:00 committed by github-actions[bot]
parent ecb82ec693
commit 18092db1c8

View file

@ -162,17 +162,17 @@ class AppResource:
and manager.wanted and manager.wanted
and manager.wanted.get("integration", {}).get("helpers_version") and manager.wanted.get("integration", {}).get("helpers_version")
): ):
self.helpers_version = float(manager.wanted.get("integration", {}).get( self.helpers_version = float(
"helpers_version" manager.wanted.get("integration", {}).get("helpers_version")
)) )
elif ( elif (
manager manager
and manager.current and manager.current
and manager.current.get("integration", {}).get("helpers_version") and manager.current.get("integration", {}).get("helpers_version")
): ):
self.helpers_version = float(manager.current.get("integration", {}).get( self.helpers_version = float(
"helpers_version" manager.current.get("integration", {}).get("helpers_version")
)) )
elif manager and manager.wanted and manager.wanted.get("packaging_format"): elif manager and manager.wanted and manager.wanted.get("packaging_format"):
self.helpers_version = float(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"): elif manager and manager.current and manager.current.get("packaging_format"):