From fb0217d961630594fb47712ce1d3b15283c93e43 Mon Sep 17 00:00:00 2001 From: elijahcroft Date: Wed, 2 Sep 2026 10:02:41 -0700 Subject: [PATCH] Fix formatting of logger call --- engine/core/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/engine/core/__init__.py b/engine/core/__init__.py index 76a6e45..c476a1d 100644 --- a/engine/core/__init__.py +++ b/engine/core/__init__.py @@ -98,7 +98,10 @@ def __init__( else: self.image = EntityAnim(image) except (pygame.error, FileNotFoundError) as e: - logger(f"Failed to load image or animation '{image}': {str(e)}", status=LoggerStatus.WARNING) + logger( + f"Failed to load image or animation '{image}': {str(e)}", + status=LoggerStatus.WARNING, + ) if scriptfile is not None: esfid = f"esf-{self.id}"