5 lines
110 B
Python
5 lines
110 B
Python
class Script:
|
|
def __init__(self, parent, func):
|
|
super().__init__(parent)
|
|
self.func = func
|