pylokid/pylokid/__main__.py
Tobias Brunner 5aae306119
All checks were successful
continuous-integration/drone/push Build is passing
Revert "handle signals for better app shutdown"
This reverts commit 573765958f.
2021-02-27 15:09:42 +01:00

11 lines
216 B
Python

"""
Helper module to run not-installed version (via ``python3 -m pylokid``)
"""
from pylokid.main import main
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
print("Byebye")