Projet

Général

Profil

0001-clicrdv-make-legacy-evolution-objects-inherit-from-n.patch

Frédéric Péters, 11 juin 2021 08:41

Télécharger (863 octets)

Voir les différences:

Subject: [PATCH] clicrdv: make legacy evolution objects inherit from new base
 (#54759)

 auquotidien/modules/clicrdv.py | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
auquotidien/modules/clicrdv.py
1
class AppointmentPart(object):
1
from wcs.workflows import EvolutionPart
2

  
3

  
4
class AppointmentPart(EvolutionPart):
2 5
    def view(self):
3 6
        return ''
4 7

  
5 8

  
6
class AppointmentErrorPart(object):
9
class AppointmentErrorPart(EvolutionPart):
7 10
    def view(self):
8 11
        return ''
9
-