From bbbb8d0364b2d01e147bd93b94b1f238d29d2b35 Mon Sep 17 00:00:00 2001 From: Shing Chan Date: Fri, 26 Apr 2024 19:50:52 +0100 Subject: [PATCH] chore: print output directory at program end --- src/stepcount/stepcount.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stepcount/stepcount.py b/src/stepcount/stepcount.py index 23a4078..4a6b13d 100644 --- a/src/stepcount/stepcount.py +++ b/src/stepcount/stepcount.py @@ -196,6 +196,7 @@ def main(): print(daily) print("\nEstimated Daily Stats (Adjusted)\n---------------------") print(daily_adj) + print("\nOutput files saved in:", outdir) after = time.time() print(f"Done! ({round(after - before,2)}s)")