How to use the pyexcelerate.Utility.nonboolean_or function in PyExcelerate

To help you get started, we’ve selected a few PyExcelerate examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github kz26 / PyExcelerate / pyexcelerate / Alignment.py View on Github external
def __or__(self, other):
        return self._binary_operation(other, Utility.nonboolean_or)
github kz26 / PyExcelerate / pyexcelerate / Fill.py View on Github external
def __or__(self, other):
        return Fill(
            background=Utility.nonboolean_or(self._background,
                                             other._background, None))
github kz26 / PyExcelerate / pyexcelerate / Style.py View on Github external
def __or__(self, other):
        return self._binary_operation(other, Utility.nonboolean_or)
github kz26 / PyExcelerate / pyexcelerate / Format.py View on Github external
def __or__(self, other):
        return Format(
            format=Utility.nonboolean_or(self.format, other.format, None))
github kz26 / PyExcelerate / pyexcelerate / Font.py View on Github external
def __or__(self, other):
        return self._binary_operation(other, Utility.nonboolean_or)
github kz26 / PyExcelerate / pyexcelerate / Borders.py View on Github external
def __or__(self, other):
        return self._binary_operation(other, Utility.nonboolean_or)