Openpyxl disable {ignore_blank} in all cell validator in Workbook
*Created originally on Bitbucket by [tgh101](https://bitbucket.org/%7Bdc7aa7b1-7187-401a-9a7c-4dfdbee71110%7D/)* in excel i create a cell validator with ‘ignore Blank’ option checked ``` wb = load_workbook(filename='DataValidationErrorExample.XLSX') ws = wb.worksheets[0] print(ws.data_validations) ``` it shows all IgnoreBlank as False. and after saving back my workbook, ‘ignore Blank’ option is unchecked for all my validators.
issue