From 3802cb2915f9c0b262bac1656a933de41dc79bd8 Mon Sep 17 00:00:00 2001
From: DannyAbdi <dannyabdi13@gmail.com>
Date: Mon, 25 Mar 2024 04:15:59 +0000
Subject: [PATCH] reformated code

---
 testDFS.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testDFS.py b/testDFS.py
index 84730cf..53afc4f 100644
--- a/testDFS.py
+++ b/testDFS.py
@@ -71,7 +71,7 @@ class TestDFS(unittest.TestCase):
         self.assertEqual(dfs.get_path(), expected_path)
 
         start = (0, 0)
-        goal = (2, 2)  
+        goal = (2, 2)
         dfs._dfs(maze, start, goal)
         self.assertEqual(dfs.get_path(), [])
 
-- 
GitLab