Skip to content

Commit

Permalink
skip sheet attributes in yaml serialization. Fix #9
Browse files Browse the repository at this point in the history
  • Loading branch information
nsheff committed Jul 1, 2016
1 parent 3ea42d5 commit e6475d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion looper/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ def to_yaml(self, path=None):
:param path: A file path to write yaml to.
:type path: str
"""
def obj2dict(obj, to_skip=["samples", "sheet"]):
def obj2dict(obj, to_skip=["samples", "sheet", "sheet_attributes"]):
"""
Build representation of object as a dict, recursively
for all objects that might be attributes of self.
Expand Down

0 comments on commit e6475d9

Please sign in to comment.