Skip to content

Commit b5656c1

Browse files
committed
Fix flake8 for local dev
1 parent eb9b407 commit b5656c1

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ python_files = tests/*.py tests_nccl/*.py
55
[flake8]
66
ignore = E203, E501, W503, E402
77
per-file-ignores =
8-
__init__.py: F401, F403, F405
8+
__init__.py: F401, F403, F405
99
max-line-length = 88

tests/test_fredholm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def test_Fredholm1(par):
135135
y_adj_dist = Fop_MPI.H @ y_dist
136136
y_adj = y_adj_dist.asarray()
137137
# Dot test
138-
dottest(Fop_MPI, x, y_dist, par["nsl"] * par["nx"] * par["nz"],par["nsl"] * par["ny"] * par["nz"])
138+
dottest(Fop_MPI, x, y_dist, par["nsl"] * par["nx"] * par["nz"], par["nsl"] * par["ny"] * par["nz"])
139139

140140
if rank == 0:
141141
Fop = pylops.signalprocessing.Fredholm1(

tutorials/mdd.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"""
1515

1616
import numpy as np
17-
from scipy.signal import filtfilt
1817
from matplotlib import pyplot as plt
1918
from mpi4py import MPI
2019

0 commit comments

Comments
 (0)