File: sorttrans-cli

package info (click to toggle)
ledgerhelpers 0.3.10-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 616 kB
  • sloc: python: 3,783; makefile: 18
file content (11 lines) | stat: -rwxr-xr-x 257 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python3
# -*- coding: utf-8 -*-

import os
import sys
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "src"))

from ledgerhelpers.programs import sorttranscli

if __name__ == "__main__":
    sys.exit(sorttranscli.main(sys.argv))