X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0ffaeae32918d959e94e2d94e0a020458a409a3a..c45e85759d12da179c7e42281588fc6affd99aa0:/src/club/payment_methods.py?ds=inline

diff --git a/src/club/payment_methods.py b/src/club/payment_methods.py
index a71a67b9a..7657701ab 100644
--- a/src/club/payment_methods.py
+++ b/src/club/payment_methods.py
@@ -1,3 +1,6 @@
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
 from django.conf import settings
 from django.urls import reverse
 
@@ -68,27 +71,14 @@ class PayPal(PaymentMethod):
         return reverse('club_dummy_payment', args=[schedule.key])
 
 
-methods = []
-
-pos= getattr(settings, 'CLUB_PAYU_RECURRING_POS', None)
+pos = getattr(settings, 'CLUB_PAYU_RECURRING_POS', None)
 if pos:
-    payure_method = PayURe(pos)
-    methods.append(payure_method)
+    recurring_payment_method = PayURe(pos)
 else:
-    payure_method = None
+    recurring_payment_method = None
 
 pos = getattr(settings, 'CLUB_PAYU_POS', None)
 if pos:
-    payu_method = PayU(pos)
-    methods.append(payu_method)
+    single_payment_method = PayU(pos)
 else:
-    payu_method = None
-
-
-#methods.append(PayPal())
-
-
-method_by_slug = {
-    m.slug: m
-    for m in methods
-}
+    single_payment_method = None