Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Forgot to save before commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Patxi Laborde-Zubieta committed Nov 22, 2016
1 parent 358b4dd commit a84d961
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/sage/combinat/tree_like_tableaux.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,8 +477,9 @@ def options(self, *get_value, **set_values):
options for Parallelogram Polyominoes
"""
if self._options is None:
return self.parent()._options( *get_value, **set_values)
return self._options( *get_value, **set_values)
if **set_values==[]:
self._options=deepcopy(self.parent()._get_options())
return self._options(*get_value, **set_values)

def _get_options(self):
if self._options is None:
Expand Down

0 comments on commit a84d961

Please sign in to comment.