8 lines
194 B
Python
8 lines
194 B
Python
class Condition:
|
|
def __init__(self, **kwargs):
|
|
self.text = kwargs.get('text')
|
|
self.icon = kwargs.get('icon')
|
|
|
|
def __repr__(self):
|
|
return f'Condition(text={self.text}, icon={self.icon})'
|