summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--classification/test.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/classification/test.py b/classification/test.py
index e0db0031..a8bc7e1e 100644
--- a/classification/test.py
+++ b/classification/test.py
@@ -4,6 +4,9 @@ directory : str = "./test_input"
 
 def test(classifier):
     for name in listdir(directory):
+        if name == "README.md":
+            continue
+
         with open(path.join(directory, name), "r") as file:
             sequence_to_classify = file.read()