change name field from @property to @classproperty

This commit is contained in:
Mika Busch 2023-10-02 18:39:50 +02:00
parent 786f0cc7f3
commit 6100cea251

View File

@ -120,7 +120,7 @@ class Report(object):
def full_name(self):
return f'{self.module}.{self.class_name}'
@property
@classproperty
def name(self):
"""
Override this attribute to set a custom display name.