def __unmarshall_date()

in enrichment_function/schema/aws/securityhub/securityhubfindingsimported/marshaller.py [0:0]


    def __unmarshall_date(cls, string):
        try:
            from dateutil.parser import parse
            return parse(string).date()
        except ImportError:
            return string