Skip to content

Commit c891fa0

Browse files
Add to spaces after commas and remove spaces around =
1 parent cad40d9 commit c891fa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lectures/mccall_model_with_separation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ def compute_reservation_wage(mcm):
438438
v, d = solve_model(mcm)
439439
h = u(mcm.c) + mcm.β * d
440440
441-
i = np.searchsorted(v,h,side = 'right')
441+
i = np.searchsorted(v, h, side='right')
442442
w_bar = mcm.w[i]
443443
444444
return w_bar

0 commit comments

Comments
 (0)