jrnl/jrnl/__main__.py
Jonathan Wren 0f2962a95f
Add and run isort on Python files (#1520)
* add and run isort

* udpate more import statements

* fix typo
2022-06-25 14:43:32 -07:00

9 lines
183 B
Python

# Copyright (C) 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import sys
from jrnl.cli import cli
if __name__ == "__main__":
sys.exit(cli())