mirror of https://github.com/morpheus65535/bazarr
28 lines
766 B
Python
28 lines
766 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from six import text_type
|
|
|
|
from ..property import Property
|
|
|
|
|
|
class Basic(Property):
|
|
"""Basic property to handle int, float and other basic types."""
|
|
|
|
def __init__(self, name, data_type, allow_fallback=False, **kwargs):
|
|
"""Init method."""
|
|
super(Basic, self).__init__(name, **kwargs)
|
|
self.data_type = data_type
|
|
self.allow_fallback = allow_fallback
|
|
|
|
def handle(self, value, context):
|
|
"""Handle value."""
|
|
if isinstance(value, self.data_type):
|
|
return value
|
|
|
|
try:
|
|
return self.data_type(text_type(value))
|
|
except ValueError:
|
|
if not self.allow_fallback:
|
|
self.report(value, context)
|