How to use the pyexcelerate.Utility.nonboolean_and 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 __and__(self, other):
        return self._binary_operation(other, Utility.nonboolean_and)
github kz26 / PyExcelerate / pyexcelerate / Fill.py View on Github external
def __and__(self, other):
        return Fill(
            background=Utility.nonboolean_and(self._background,
                                              other._background, None))
github kz26 / PyExcelerate / pyexcelerate / Font.py View on Github external
def __and__(self, other):
        return self._binary_operation(other, Utility.nonboolean_and)
github kz26 / PyExcelerate / pyexcelerate / Style.py View on Github external
def __and__(self, other):
        return self._binary_operation(other, Utility.nonboolean_and)
github kz26 / PyExcelerate / pyexcelerate / Format.py View on Github external
def __and__(self, other):
        return Format(
            format=Utility.nonboolean_and(self.format, other.format, None))
github kz26 / PyExcelerate / pyexcelerate / Borders.py View on Github external
def __and__(self, other):
        return self._binary_operation(other, Utility.nonboolean_and)