Skip to content

Commit 665bd65

Browse files
committed
small isort suggestions fixed
1 parent 98f3056 commit 665bd65

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

smstools/models/harmonicModel.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
# - `harmonicModelAnal` / `harmonicModelSynth`: separated analysis/synthesis APIs
88

99
import math
10+
1011
import numpy as np
12+
1113
from smstools.models import dftModel as DFT
1214
from smstools.models import sineModel as SM
1315
from smstools.models import utilFunctions as UF

smstools/models/hprModel.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
Implements analysis, synthesis, and full model for HPR.
44
"""
55

6-
import numpy as np
76
from typing import Tuple
7+
8+
import numpy as np
9+
810
from smstools.models import harmonicModel as HM
911
from smstools.models import sineModel as SM
1012
from smstools.models import utilFunctions as UF

smstools/models/hpsModel.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
Implements analysis, synthesis, and full model for HPS.
44
"""
55

6-
import numpy as np
76
from typing import Tuple
7+
8+
import numpy as np
9+
810
from smstools.models import harmonicModel as HM
911
from smstools.models import sineModel as SM
1012
from smstools.models import stochasticModel as STM

0 commit comments

Comments
 (0)