def ci_equals()

in hpcpack-autoscaler/src/cyclecloud-hpcpack/commonutil.py [0:0]


def ci_equals(a:Optional[str], b:Optional[str]) -> bool:
    if a is None or b is None:
        return a == b
    return a.casefold() == b.casefold()