Explorar o código

[scrobbles] Remove debug printing

Colin Powell hai 10 horas
pai
achega
1530de3188
Modificáronse 1 ficheiros con 0 adicións e 3 borrados
  1. 0 3
      vrobbler/apps/scrobbles/forms.py

+ 0 - 3
vrobbler/apps/scrobbles/forms.py

@@ -77,11 +77,8 @@ def form_from_dataclass(dataclass):
     override_fields = {}
     for klass in dataclass.mro():
         if hasattr(klass, "override_fields"):
-            print(klass, ": ", klass.override_fields())
             override_fields.update(klass.override_fields())
-    print("overrides: ", override_fields)
     for f in fields(dataclass):
-        print(f)
         if f.name in override_fields:
             form_fields[f.name] = override_fields[f.name]
             continue