From bcec01de886fedfab01e30250a41b0a40c6cf395 Mon Sep 17 00:00:00 2001 From: jhite1234 <46729349+jhite1234@users.noreply.github.com> Date: Fri, 7 Feb 2025 19:57:36 -0500 Subject: [PATCH] Delete text.py test file removed --- text.py | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 text.py diff --git a/text.py b/text.py deleted file mode 100644 index f992c61..0000000 --- a/text.py +++ /dev/null @@ -1,10 +0,0 @@ -import os - -print("Current Working Directory:", os.getcwd()) -file_path = "./games/lost_forest.csv" - -if os.path.exists(file_path): - print("✅ File exists! Python can detect it.") -else: - print("❌ File does NOT exist according to Python.") -