diff options
| author | 2020-12-12 03:07:25 +0100 | |
|---|---|---|
| committer | 2020-12-12 03:07:25 +0100 | |
| commit | 35536a73389e9d555e42f9388552b7c43f5c3a8b (patch) | |
| tree | df98e8043543fdffdb767128b7a5d97b998a1b27 /aoc/__init__.py | |
| parent | 4985ee94450df0bbcf982b7652c946a47707e60c (diff) | |
| download | 2021-35536a73389e9d555e42f9388552b7c43f5c3a8b.tar.gz 2021-35536a73389e9d555e42f9388552b7c43f5c3a8b.tar.bz2 2021-35536a73389e9d555e42f9388552b7c43f5c3a8b.zip | |
Added day 3
Diffstat (limited to 'aoc/__init__.py')
| -rw-r--r-- | aoc/__init__.py | 2 |
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 | |||
| 4 | from typing import Generator, Any | 4 | from typing import Generator, Any |
| 5 | 5 | ||
| 6 | 6 | ||
| 7 | class AssignmentBase(ABC): | 7 | class BaseAssignment(ABC): |
| 8 | def __init__(self, path): | 8 | def __init__(self, path): |
| 9 | self.path = path | 9 | self.path = path |
| 10 | 10 | ||
