1
0
mirror of https://gitlab.com/MisterBiggs/aoc2020.git synced 2025-06-16 06:16:39 +00:00

black formatting

This commit is contained in:
Anson 2020-12-08 20:35:17 -07:00
parent d21789ac86
commit 9131a62377

View File

@ -1,4 +1,4 @@
input = open('day1\input.txt','r').readlines()
input = open("day1\input.txt", "r").readlines()
print(input)
input = [int(a) for a in input]