Skip to content

Commit

Permalink
Fix typehinting issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
zetienne committed Sep 30, 2023
1 parent a4cfc5b commit 7d02a8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nrpypn/PN_p_t.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def f_p_t(
a[5] = self.a_5
a[6] = self.a_6
a[7] = self.a_7
self.p_t = 1 # Term prior to the sum in parentheses
self.p_t = sp.sympify(1) # Term prior to the sum in parentheses
for k in range(8):
self.p_t += a[k] / r ** div(k, 2)
self.p_t *= q / (1 + q) ** 2 * 1 / r ** div(1, 2)
Expand Down

0 comments on commit 7d02a8f

Please sign in to comment.