Skip to content

Commit

Permalink
fix: assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
maffettone committed Apr 12, 2024
1 parent 1450345 commit 223074f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pdf_agents/peakfit.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
from typing import Dict, List

import numpy as np
from numpy.typing import ArrayLike
from scipy.optimize import curve_fit
from scipy.special import wofz
from numpy.typing import ArrayLike

from pdf_agents.agents import PDFBaseAgent, PDFReporterMixin

Expand Down Expand Up @@ -57,7 +57,7 @@ def __init__(
):
self._xrois = xrois
self._fit_func = fit_func
self._pos_percent_lim: pos_percent_lim
self._pos_percent_lim = pos_percent_lim
self._maxcycles: maxcycles
self._recent_x = None
self._recent_y = None
Expand Down

0 comments on commit 223074f

Please sign in to comment.