Skip to content

Commit

Permalink
reapply Process.identifier 'pop'
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Nov 30, 2018
1 parent 6d624af commit 1a574f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion twitcher/datatype.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def __init__(self, *args, **kwargs):
if 'id' not in self and 'identifier' not in self:
raise TypeError("'id' OR 'identifier' is required")
if 'id' not in self:
self['id'] = self.get('identifier')
self['id'] = self.pop('identifier')
if 'processEndpointWPS1' not in self:
raise TypeError("'processEndpointWPS1' is required")
if 'package' not in self:
Expand Down
2 changes: 1 addition & 1 deletion twitcher/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
])

EXECUTE_TRANSMISSION_MODE_VALUE = 'value'
EXECUTE_TRANSMISSION_MODE_REFERENCE = 'value'
EXECUTE_TRANSMISSION_MODE_REFERENCE = 'reference'

execute_transmission_mode_options = frozenset([
EXECUTE_TRANSMISSION_MODE_VALUE,
Expand Down

0 comments on commit 1a574f1

Please sign in to comment.