src/hpc/autoscale/job/demandcalculator.py [360:368]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        for attr_name in dir(self):
            if not (
                attr_name[0].isalpha() or attr_name.startswith("_DemandCalculator")
            ):
                continue

            attr = getattr(self, attr_name)
            if "__call__" not in dir(attr):
                attr_expr = attr_name.replace("_DemandCalculator", "")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/hpc/autoscale/job/demandcalculator.py [377:385]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        for attr_name in dir(self):
            if not (
                attr_name[0].isalpha() or attr_name.startswith("_DemandCalculator")
            ):
                continue

            attr = getattr(self, attr_name)
            if "__call__" not in dir(attr):
                attr_expr = attr_name.replace("_DemandCalculator", "")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



