Fix super call

This commit is contained in:
Sergio Morillo 2021-12-20 16:52:34 +01:00
parent 78f53f7fcf
commit 7a5315be9b
1 changed files with 1 additions and 1 deletions

2
ir.py
View File

@ -53,7 +53,7 @@ class Sequence(metaclass=PoolMeta):
'ir_sequence_period.msg_missing_date',
date=date,
sequence=sequence.rec_name))
return super(Sequence, cls).get(_lock=_lock)
return super().get(_lock=_lock)
return ''
def _get_period_pattern(self):