This commit is contained in:
cupcakearmy 2021-12-03 08:58:27 +01:00
parent cbe08c579f
commit 33ea3df0ef
No known key found for this signature in database
GPG Key ID: 3235314B4D31232F

View File

@ -5,7 +5,7 @@ to: <%= year %>/<%= day %>/python/main.py
from os.path import join, dirname
# Day 01
# Day <%= day %>
# Common
@ -13,7 +13,7 @@ from os.path import join, dirname
def read_input(filename):
data = join(dirname(__file__), '..', filename)
with open(data) as f:
return f.read()
return f.read().strip()
# 1