From 23d8d54e0b135c5b2dd35aa63ff1ee69a0bb88e1 Mon Sep 17 00:00:00 2001 From: venusbb Date: Thu, 9 Nov 2017 11:07:11 +0000 Subject: [PATCH] remove check to financial_year_start in schema as it can be None --- app/billing/billing_schemas.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/billing/billing_schemas.py b/app/billing/billing_schemas.py index 631c782f7..d5a840184 100644 --- a/app/billing/billing_schemas.py +++ b/app/billing/billing_schemas.py @@ -8,7 +8,6 @@ create_or_update_free_sms_fragment_limit_schema = { "title": "Create", "properties": { "free_sms_fragment_limit": {"type": "integer", "minimum": 1}, - "financial_year_start": {"type": "integer", "minimum": 2016} }, "required": ["free_sms_fragment_limit"] }