Skip to content

Commit

Permalink
Fix t, a, g, s return value for tags
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Oct 3, 2017
1 parent 280dc48 commit fa2d80d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/model/__init__.py
Expand Up @@ -87,8 +87,8 @@ def set_datatypes_registry(d_registry):


class HasTags(object):
dict_collection_visible_keys = ('tags')
dict_element_visible_keys = ('tags')
dict_collection_visible_keys = ('tags',)
dict_element_visible_keys = ('tags',)

def to_dict(self, *args, **kwargs):
rval = super(HasTags, self).to_dict(*args, **kwargs)
Expand Down

0 comments on commit fa2d80d

Please sign in to comment.