Skip to content

Commit

Permalink
Marked unused parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
kevindlewis23 committed Jul 1, 2024
1 parent 3c783df commit 3f5388a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hexrd/fitting/fitpeak.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def quad_fit_obj(x, a, b, c):
return a*x**2 + b*x + c


def quad_fit_jac(x, a, b, c):
def quad_fit_jac(x, _a, _b, _c):
x = np.asarray(x)
return np.vstack([x**2, x, np.ones_like(x)]).T

Expand Down

0 comments on commit 3f5388a

Please sign in to comment.