From 97eca368b70b258a5af276663ffb18bc6d8b28c4 Mon Sep 17 00:00:00 2001 From: Daniel Yohan Date: Thu, 21 Nov 2019 19:05:46 -0300 Subject: [PATCH] [fix] Distinct --- bothub/common/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bothub/common/models.py b/bothub/common/models.py index 0c88751c..279dff69 100644 --- a/bothub/common/models.py +++ b/bothub/common/models.py @@ -488,7 +488,7 @@ def examples(self): else: examples = examples.exclude(deleted_in__isnull=False) - return examples + return examples.distinct() @property def requirements_to_train(self):