Skip to content

Commit

Permalink
return instead of raise :)
Browse files Browse the repository at this point in the history
  • Loading branch information
liorchen committed May 25, 2017
1 parent 0f7b965 commit c75e5f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions container_transform/transformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,10 +218,10 @@ def emit_fetch(self, fetch):
return fetch

def emit_memory_reserve(self, memory_reserve):
raise memory_reserve
return memory_reserve

def ingest_memory_reserve(self, memory_reserve):
raise memory_reserve
return memory_reserve

@abstractmethod
def ingest_port_mappings(self, port_mappings):
Expand Down

0 comments on commit c75e5f8

Please sign in to comment.