From adb6b5df8db445cf7b1e80c9195c149653b46634 Mon Sep 17 00:00:00 2001
From: Rafael Almeida Barbosa <rafaelbarbosatec@gmail.com>
Date: Mon, 23 Dec 2024 11:53:53 -0300
Subject: [PATCH] format

---
 lib/util/extensions/int_int_extensions.dart | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/util/extensions/int_int_extensions.dart b/lib/util/extensions/int_int_extensions.dart
index feca9b08..408401ba 100644
--- a/lib/util/extensions/int_int_extensions.dart
+++ b/lib/util/extensions/int_int_extensions.dart
@@ -11,6 +11,7 @@ extension IntIntExtensions on (int, int) {
       return (x - other.x).abs() <= 1 && (y - other.y).abs() <= 1;
     }
 
-    return (x - other.x).abs() <= 1 && y == other.y || x == other.x && (y - other.y).abs() <= 1;
+    return (x - other.x).abs() <= 1 && y == other.y ||
+        x == other.x && (y - other.y).abs() <= 1;
   }
 }