Switching to the built-in json module, with a fallback to the external one
[ejpi] / ejpi-calc
1 #!/usr/bin/env python
2
3 import logging
4
5
6 _moduleLogger = logging.getLogger(__name__)
7
8
9 from ejpi import ejpi_qt
10
11
12 if __name__ == "__main__":
13         ejpi_qt.run()