From 24229d1327814d61e0851a4a7d5fc3469a8d4ef5 Mon Sep 17 00:00:00 2001 From: Vignesh Hari Date: Tue, 13 Nov 2018 22:56:10 +0530 Subject: [PATCH] Corrected function names to match tests --- exercises/custom-set/custom_set.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/custom-set/custom_set.py b/exercises/custom-set/custom_set.py index bfd63d81299..ee73fdbef03 100644 --- a/exercises/custom-set/custom_set.py +++ b/exercises/custom-set/custom_set.py @@ -23,8 +23,8 @@ def add(self, element): def intersection(self, other): pass - def difference(self, other): + def __sub__(self, other): pass - def union(self, other): + def __add__(self, other): pass