From 3650d89fe19211cf9c96c5ea9ccfca8cb08d6c98 Mon Sep 17 00:00:00 2001 From: surtur Date: Mon, 20 Dec 2021 01:04:55 +0100 Subject: [PATCH] chore: actually return the list of random n-grams --- da_detector.py | 1 + 1 file changed, 1 insertion(+) diff --git a/da_detector.py b/da_detector.py index 71abad7..8fde623 100755 --- a/da_detector.py +++ b/da_detector.py @@ -88,6 +88,7 @@ class da_detector: if (candidate_ngram not in r_ngrams): r_ngrams.append(candidate_ngram) print(r_ngrams) + return r_ngrams freqs_folder = "./freqs/"