Skip to content

Commit

Permalink
make __str__ compatible with py2 (six-decorator) (#233)
Browse files Browse the repository at this point in the history
* make __str__ compatible with py2 (six-decorator)
See also: #232 and #229
  • Loading branch information
bloodywing authored and spaceone committed Jul 17, 2017
1 parent fd519fa commit 1327b29
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion circuits/core/values.py
@@ -1,10 +1,11 @@
"""
This defines the Value object used by components and events.
"""
from ..six import string_types
from ..six import python_2_unicode_compatible, string_types
from .events import Event


@python_2_unicode_compatible
class Value(object):

"""Create a new future Value Object
Expand Down

0 comments on commit 1327b29

Please sign in to comment.