fix: linter errors over operators.py [no ci]

This commit is contained in:
Alec.Schmidt
2025-03-18 10:12:30 +01:00
parent 3d6abfa9bc
commit 83d70c4fc5

View File

@@ -42,6 +42,6 @@ def multiplication(x, y):
# returns None if the divisor is zero
# the result might be of float type
def division(x, y):
if y==0:
if y == 0:
return None
return x/y