Skip to content

Commit

Permalink
Merge df8f26d into 70d9cf1
Browse files Browse the repository at this point in the history
  • Loading branch information
appsolute committed Mar 28, 2017
2 parents 70d9cf1 + df8f26d commit 0c8932f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pynamodb/attributes.py
Expand Up @@ -11,6 +11,7 @@
MAP, MAP_SHORT, LIST, LIST_SHORT, DEFAULT_ENCODING, BOOLEAN, ATTR_TYPE_MAP, NUMBER_SHORT, NULL
)
import collections
from datetime import datetime


class Attribute(object):
Expand Down Expand Up @@ -601,6 +602,7 @@ def deserialize(self, values):
float: NumberAttribute(),
int: NumberAttribute(),
str: UnicodeAttribute(),
datetime: UTCDateTimeAttribute(),
}


Expand All @@ -612,6 +614,7 @@ def deserialize(self, values):
float: NUMBER_SHORT,
int: NUMBER_SHORT,
str: STRING_SHORT,
datetime: STRING_SHORT,
}


Expand Down

0 comments on commit 0c8932f

Please sign in to comment.