# -*- coding: utf-8 -*- from __future__ import division, absolute_import, print_function, unicode_literals ################################################################################################# from entrypoint import Context # noqa: E402 from helper import LazyLogger # noqa: E402 ################################################################################################# LOG = LazyLogger(__name__) ################################################################################################# if __name__ == "__main__": LOG.debug("--->[ context ]") try: Context() except Exception as error: LOG.exception(error) LOG.info("---<[ context ]")