From 3c4c1e49e7fd7415c84156c34cb8ba7aa133dd49 Mon Sep 17 00:00:00 2001 From: DragonMoffon Date: Sat, 16 Nov 2024 11:42:35 +1300 Subject: [PATCH] remove trailing whitespace --- arcade/camera/camera_2d.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arcade/camera/camera_2d.py b/arcade/camera/camera_2d.py index 549009b3f..79b6bf235 100644 --- a/arcade/camera/camera_2d.py +++ b/arcade/camera/camera_2d.py @@ -484,8 +484,8 @@ def point_in_view(self, point: Point2) -> bool: """ # This is unwrapped from standard Vec2 operations, # The construction and garbage collection of the vectors would - # increase this method's cost by ~4x - + # increase this method's cost by ~4x + pos = self.position diff = point[0] - pos[0], point[1] - pos[1]