27
28
29
30
31
32
33
34
35
36
37
38
39
40
41 | import action
import re
# provides another export window, and custom file generation - does not use action.save()
class exportcat():
module = ""
meta = plugin_meta()
# Register callback
def __init__(self, parent):
conf.add_plugin_defaults(self.meta, self.module)
if parent:
self.parent = parent |
<
| 27
28
29
30
31
32
33
34
35
36
37
38
39
40 | import action
import re
# provides another export window, and custom file generation - does not use action.save()
class exportcat():
meta = plugin_meta()
# Register callback
def __init__(self, parent):
conf.add_plugin_defaults(self.meta, self.module)
if parent:
self.parent = parent |