summaryrefslogtreecommitdiffstats
path: root/aoc/__init__.py
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2020-12-12 03:07:25 +0100
committerGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2020-12-12 03:07:25 +0100
commit35536a73389e9d555e42f9388552b7c43f5c3a8b (patch)
treedf98e8043543fdffdb767128b7a5d97b998a1b27 /aoc/__init__.py
parent4985ee94450df0bbcf982b7652c946a47707e60c (diff)
download2021-35536a73389e9d555e42f9388552b7c43f5c3a8b.tar.gz
2021-35536a73389e9d555e42f9388552b7c43f5c3a8b.tar.bz2
2021-35536a73389e9d555e42f9388552b7c43f5c3a8b.zip
Added day 3
Diffstat (limited to 'aoc/__init__.py')
-rw-r--r--aoc/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/aoc/__init__.py b/aoc/__init__.py
index b07ead1..70c3ac0 100644
--- a/aoc/__init__.py
+++ b/aoc/__init__.py
@@ -4,7 +4,7 @@ from collections import Iterator
4from typing import Generator, Any 4from typing import Generator, Any
5 5
6 6
7class AssignmentBase(ABC): 7class BaseAssignment(ABC):
8 def __init__(self, path): 8 def __init__(self, path):
9 self.path = path 9 self.path = path
10 10