removed comment

This commit is contained in:
Benjamin Hackl 2024-10-11 14:52:00 +02:00
parent 1e249d7645
commit 231c836d2d

View file

@ -1,4 +1,4 @@
def addition(a: float, b: float) -> float: # this does not seem right! why str?
def addition(a: float, b: float) -> float:
return a + b
def subtraction(a: float, b: float) -> float: