Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
payno
workflow_concepts
Commits
d895af36
Commit
d895af36
authored
Jun 11, 2021
by
Wout De Nolf
Browse files
fixup
parent
42fc7c80
Changes
1
Hide whitespace changes
Inline
Side-by-side
esrftaskgraph/esrftaskgraph/task.py
View file @
d895af36
...
...
@@ -127,7 +127,10 @@ class Task(Registered, hashing.UniversalHashable, register=False):
@
classmethod
def
class_nonce_data
(
cls
):
return
super
().
class_nonce_data
()
+
(
sorted
(
cls
.
input_names
()),
sorted
(
cls
.
output_names
()))
return
super
().
class_nonce_data
()
+
(
sorted
(
cls
.
input_names
()),
sorted
(
cls
.
output_names
()),
)
@
property
def
input_variables
(
self
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment