diff options
author | Nao Pross <np@0hm.ch> | 2023-10-04 18:22:48 +0200 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2023-10-04 18:22:48 +0200 |
commit | dcfc93915895ccace4a9b7fa9cc5f2f961072687 (patch) | |
tree | 561873f6e6dbfcea640a4baa3c6c0e13529b8d8b /src | |
parent | Change Makefile to not use fat VS Code docker image (diff) | |
download | act4e-dcfc93915895ccace4a9b7fa9cc5f2f961072687.tar.gz act4e-dcfc93915895ccace4a9b7fa9cc5f2f961072687.zip |
Pass TestSimpleIntro
Diffstat (limited to 'src')
-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 2a4856d..acf62bf 100644 --- a/src/act4e_solutions/intro.py +++ b/src/act4e_solutions/intro.py @@ -3,4 +3,4 @@ import act4e_interfaces as I class SolSimpleIntro(I.SimpleIntro): def sum(self, a: int, b: int) -> int: - raise NotImplementedError() + return a + b |