This repository has been archived on 2019-12-09. You can view files and clone it, but cannot push or open issues or pull requests.
pacman2/engine/components/script.py

5 lines
110 B
Python

class Script:
def __init__(self, parent, func):
super().__init__(parent)
self.func = func