diff options
author | Andrea Censi <acensi@ethz.ch> | 2022-02-21 12:24:14 +0100 |
---|---|---|
committer | Andrea Censi <acensi@ethz.ch> | 2022-02-21 12:24:14 +0100 |
commit | cc712ed5fdf07e24af3ac0a133f483c506af55a9 (patch) | |
tree | f878dc90bc61fc65ef256d68f7d06586eab8dafe /src/act4e_solutions/intro.py | |
parent | Bump to version 7.1.2202211122 [ci skip] (diff) | |
download | act4e-cc712ed5fdf07e24af3ac0a133f483c506af55a9.tar.gz act4e-cc712ed5fdf07e24af3ac0a133f483c506af55a9.zip |
skeletons
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() |