We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd3aadf commit af5d8aeCopy full SHA for af5d8ae
pylops/signalprocessing/sliding1d.py
@@ -189,7 +189,7 @@ def __init__(
189
self.taps = [
190
tapin,
191
]
192
- for i in range(1, nwins - 1):
+ for _ in range(1, nwins - 1):
193
self.taps.append(tap)
194
self.taps.append(tapend)
195
self.taps = np.vstack(self.taps)
pylops/signalprocessing/sliding2d.py
@@ -230,7 +230,7 @@ def __init__(
230
231
tapin[np.newaxis, :],
232
233
234
self.taps.append(tap[np.newaxis, :])
235
self.taps.append(tapend[np.newaxis, :])
236
self.taps = np.concatenate(self.taps, axis=0)
0 commit comments