diff options
Diffstat (limited to 'classification')
| -rw-r--r-- | classification/test.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/classification/test.py b/classification/test.py index e0db00313..a8bc7e1ee 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() |