Skip to content

Commit

Permalink
Add blank line
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaBaburashvili authored and mambelli committed Jun 4, 2024
1 parent 77c6fc1 commit 9317f75
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/planetsmath/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ def multiply_by_2(list):
for item in list:
product *= 2
return product



def division_function(list):
division = 1.0
for item in list:
division/=item
division /= item
return division

0 comments on commit 9317f75

Please sign in to comment.