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
f88f0c16
Commit
f88f0c16
authored
Jun 11, 2021
by
Wout De Nolf
Browse files
fixup
parent
300a81b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
esrftaskgraph/esrftaskgraph/variable.py
View file @
f88f0c16
...
...
@@ -326,7 +326,7 @@ class MutableVariableContainer(VariableContainer, MutableMapping):
del
self
.
value
[
name
]
class
Unknown
VariableError
(
RuntimeError
):
class
Missing
VariableError
(
RuntimeError
):
pass
...
...
@@ -361,7 +361,7 @@ class VariableContainerNamespace:
try
:
return
self
.
_container
[
name
]
except
(
KeyError
,
TypeError
):
raise
Unknown
VariableError
(
name
)
raise
Missing
VariableError
(
name
)
class
ReadOnlyVariableContainerNamespace
(
VariableContainerNamespace
):
...
...
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