This commit is contained in:
Christian Zangl 2024-06-27 22:59:51 +02:00
parent 3a413ad7e0
commit 434a86f89a
No known key found for this signature in database
GPG Key ID: 6D468AC36E2A4B3D
4 changed files with 13 additions and 14 deletions

View File

@ -1,7 +1,7 @@
from chkbit.status import Status from .status import Status
from chkbit.ignore import Ignore from .ignore import Ignore
from chkbit.input_item import InputItem from .input_item import InputItem
from chkbit.context import Context from .context import Context
from chkbit.hashfile import hashfile, hashtext from .hashfile import hashfile, hashtext
from chkbit.index import Index from .index import Index
from chkbit.index_thread import IndexThread from .index_thread import IndexThread

View File

@ -1,5 +1,4 @@
from chkbit_cli.cli import CLI from .cli import CLI
from chkbit_cli.progress import Progress from .progress import Progress
from chkbit_cli.sparklines import sparkify from .sparklines import sparkify
from chkbit_cli.rate_calc import RateCalc from .rate_calc import RateCalc
from chkbit_cli.main import Main, main

View File

@ -8,7 +8,7 @@ import threading
import time import time
from datetime import datetime, timedelta from datetime import datetime, timedelta
from chkbit import Context, Status, IndexThread from chkbit import Context, Status, IndexThread
from chkbit_cli import CLI, Progress, RateCalc, sparkify from . import CLI, Progress, RateCalc, sparkify
EPILOG = """ EPILOG = """

2
run.py
View File

@ -1,4 +1,4 @@
from chkbit_cli import main from chkbit_cli.main import main
if __name__ == "__main__": if __name__ == "__main__":
main() main()