Skip to content

Commit 691773f

Browse files
authored
Update test_circuit_elements.py
Fix flake8 ignore lines that are causing the linter to fail
1 parent f2fe5cd commit 691773f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

impedance/tests/test_circuit_elements.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ def NE2(p, f):
179179
assert "NE2" in circuit_elements
180180
with pytest.raises(OverwriteError):
181181
# try to create the same element again without overwrite
182-
@element(num_params=1, units=["Ohm"]) # noqa: F811
183-
def NE2(p, f):
182+
@element(num_params=1, units=["Ohm"])
183+
def NE2(p, f): # noqa: F811
184184
"""definitely a new circuit element no one has seen before
185185
186186
Notes
@@ -208,8 +208,8 @@ def NE3(p, f):
208208
assert circuit_elements["NE3"]([1], [1]) == [[1]]
209209
# try to create the same element again with overwrite
210210

211-
@element(num_params=1, units=["Ohm"], overwrite=True) # noqa: F811
212-
def NE3(p, f):
211+
@element(num_params=1, units=["Ohm"], overwrite=True)
212+
def NE3(p, f): # noqa: F811
213213
# feel free to change to a better test
214214
return [p * ff * 2 for ff in f]
215215

0 commit comments

Comments
 (0)