From f31cd7a98d760bf739558520a7a5208e97a3cfd4 Mon Sep 17 00:00:00 2001 From: George Lacey Date: Fri, 7 May 2021 11:04:43 +0100 Subject: [PATCH] Remove sleep --- src/main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.py b/src/main.py index dda2e8c..87a0bb7 100644 --- a/src/main.py +++ b/src/main.py @@ -23,7 +23,6 @@ def main(args, path: Path, log: Log): summary = Summary(db) print(summary.repo_stats()) else: - sleep(1) log.debug("reading from stdin") borg_output = " ".join(stdin.readlines()) log.debug(f"stdin output: {borg_output}") @@ -50,7 +49,6 @@ def get_args(): if __name__ == "__main__": - print(stdin.readline()) m_args = get_args() m_path = Path(realpath(__file__)).parent.parent m_log = Log(LEVEL_DEBUG)