diff options
Diffstat (limited to 'src/act4e_solutions/intro.py')
-rw-r--r-- | src/act4e_solutions/intro.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/act4e_solutions/intro.py b/src/act4e_solutions/intro.py index 4d8207f..2a4856d 100644 --- a/src/act4e_solutions/intro.py +++ b/src/act4e_solutions/intro.py @@ -1,6 +1,6 @@ import act4e_interfaces as I -class MySimpleIntro(I.SimpleIntro): +class SolSimpleIntro(I.SimpleIntro): def sum(self, a: int, b: int) -> int: raise NotImplementedError() |