diff options
| author | romangraef <romangraef@loves.dicksinhisan.us> | 2018-12-06 17:04:54 +0100 |
|---|---|---|
| committer | romangraef <romangraef@loves.dicksinhisan.us> | 2018-12-06 17:04:54 +0100 |
| commit | fa183aa17721e86cd44b4cf9d43917987bc074ca (patch) | |
| tree | 0cdbc958e48c00f0d2d35e78b93454a8a054b889 /commons.py | |
| parent | 28697e7a3bb6da16e9be331bf9576572468910d6 (diff) | |
| download | aoc2018-fa183aa17721e86cd44b4cf9d43917987bc074ca.tar.gz aoc2018-fa183aa17721e86cd44b4cf9d43917987bc074ca.tar.bz2 aoc2018-fa183aa17721e86cd44b4cf9d43917987bc074ca.zip | |
day5
Diffstat (limited to 'commons.py')
| -rw-r--r-- | commons.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ def get_input(day: int) -> str: if cache_file.exists(): return cache_file.read_text() text = requests.get('http://adventofcode.com/2018/day/{}/input'.format(day), - cookies=cookies).text + cookies=cookies).text.strip() cache_file.write_text(text) return text |
