Skip to content

Commit

Permalink
Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
mph- committed Jun 15, 2024
1 parent 7eefb00 commit 2033bd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lcapy/approximate.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ def value(expr):
denom = 0

for k in range(m + 1):
scale = (factorial(m + n - k) * factorial(m)
) // (factorial(k) * factorial(m - k) * factorial(m))
scale = (factorial(m + n - k) * factorial(m)) \
// (factorial(k) * factorial(m - k) * factorial(m))
numer += scale * arg**k

for k in range(n + 1):
Expand Down

0 comments on commit 2033bd0

Please sign in to comment.