mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-12 09:28:31 +02:00
* Remove executable permissions from non-script files * Remove harmless-but-useless shebang lines
9 lines
179 B
Python
9 lines
179 B
Python
# Copyright (C) 2012-2021 jrnl contributors
|
|
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
import sys
|
|
|
|
from .cli import cli
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(cli())
|