From 8b3fe11f200e459d5cd9dfbf157ce496ed182dc9 Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Tue, 7 Dec 2021 12:13:33 +0100 Subject: [PATCH] template --- _templates/riddle/new/python.ejs.t | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_templates/riddle/new/python.ejs.t b/_templates/riddle/new/python.ejs.t index 6d88b03..e6ae4ac 100644 --- a/_templates/riddle/new/python.ejs.t +++ b/_templates/riddle/new/python.ejs.t @@ -15,6 +15,10 @@ def read_input(filename): with open(data) as f: return f.read().strip() + +test = read_input('test.txt') +data = read_input('input.txt') + # 1 print('1.')