def __init__()

in ees_microsoft_outlook/checkpointing.py [0:0]


    def __init__(self, logger, config):
        self.config = config
        self.logger = logger
        if "Office365" in self.config.get_value("connector_platform_type"):
            self.checkpoint_path = os.path.join(
                os.path.dirname(__file__), "checkpoint_office365.json"
            )
        elif "Microsoft Exchange" in self.config.get_value("connector_platform_type"):
            self.checkpoint_path = os.path.join(
                os.path.dirname(__file__), "checkpoint_microsoft_exchange.json"
            )