def run()

in src/smjsindustry/finance/processor.py [0:0]


    def run(self, **kwargs):
        """Overrides the base class method."""
        logger.info("You are not charged when EC2 instances are in pending state")
        logger.info(
            "More info: "
            "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-lifecycle.html"
        )
        super(FinanceProcessor, self).run(**kwargs)