mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-06-26 10:54:28 +02:00
11 lines
167 B
Python
Executable file
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())
|