Skip to content

Commit 0a5b42b

Browse files
committed
fix: compilation on python 3.5
1 parent d56f586 commit 0a5b42b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

objectbox/model/properties.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def __init__(self, py_type: type, id: int, uid: int, type: PropertyType = None):
5858
self._name = "" # set in Entity.fill_properties()
5959

6060
self._py_type = py_type
61-
self._ob_type: OBXPropertyType = type if type != None else self.__determine_ob_type()
61+
self._ob_type = type if type != None else self.__determine_ob_type()
6262
self._fb_type = fb_type_map[self._ob_type]
6363

6464
self._is_id = isinstance(self, Id)

0 commit comments

Comments
 (0)