File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3636pipelineTemplates : dict [str , str ] = {}
3737
3838
39+ MESHROOM_ROOT = Path (__file__ ).resolve ().parent .parent .parent
40+
41+
3942def hashValue (value ) -> str :
4043 """ Hash 'value' using sha1. """
4144 hashObject = hashlib .sha1 (str (value ).encode ('utf-8' ))
Original file line number Diff line number Diff line change @@ -68,15 +68,15 @@ def __repr__(self):
6868
6969
7070class OrderedTaskType (IntFlag ):
71- PLACEHOLDER = auto ()
71+ PLACEHOLDER = 0
7272 """No command : just here to have dependencies"""
73- PREPROCESS = auto ()
73+ PREPROCESS = 1
7474 """Task that executes a node preprocess method"""
75- EXPANDING = auto ()
75+ EXPANDING = 2
7676 """Task that executes a node preprocess method"""
77- CHUNK = auto ()
77+ CHUNK = 3
7878 """Task that will expand during the processing"""
79- POSTPROCESS = auto ()
79+ POSTPROCESS = 4
8080 """Task that executes a node postprocess method"""
8181
8282
You can’t perform that action at this time.
0 commit comments