clicrdv: make legacy evolution objects inherit from new base (#54759)

This commit is contained in:
Frédéric Péters 2021-06-11 08:41:04 +02:00
parent 8c84797c33
commit 9dbcc28ac0
1 changed files with 5 additions and 2 deletions

View File

@ -1,8 +1,11 @@
class AppointmentPart(object):
from wcs.workflows import EvolutionPart
class AppointmentPart(EvolutionPart):
def view(self):
return ''
class AppointmentErrorPart(object):
class AppointmentErrorPart(EvolutionPart):
def view(self):
return ''