timewarrior/test/test_extensions/debug.py
Thomas Lauf 55ad661e0d Add tests for configurable report range, update man page
Signed-off-by: Thomas Lauf <thomas.lauf@tngtech.com>
2022-12-31 22:22:49 +01:00

11 lines
167 B
Python
Executable file

#!/usr/bin/env python3
import sys
for line in sys.stdin:
# skip configuration
if line == "\n":
break
for line in sys.stdin:
print(line.strip())