aboutsummaryrefslogtreecommitdiff
path: root/ledger.py
blob: 61eb6a5ba17259bf478b7657e2b4c0315650e310 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python3
from utils.args import get_arguments, test_args

def main():
    args = get_arguments()
    test_args(args)

    print(args)


if __name__ == '__main__':
    main()