Skip to content

Commit a6bb5d3

Browse files
committed
Fix linting error
1 parent 2195721 commit a6bb5d3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

tests/libraries/siepic/test_siepic_models.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def test_instantiable(self):
1414
siepic.bidirectional_coupler(thickness=220, width=500)
1515

1616
def test_s_params(self, std_wl_um):
17-
s = siepic.bidirectional_coupler(wl=std_wl_um)
17+
siepic.bidirectional_coupler(wl=std_wl_um)
1818

1919

2020
class Testdirectional_coupler:
@@ -26,7 +26,7 @@ def test_instantiable(self):
2626
siepic.directional_coupler(gap=200, coupling_length=45)
2727

2828
def test_s_params(self, std_wl_um):
29-
s = siepic.directional_coupler(wl=std_wl_um, gap=200, coupling_length=45)
29+
siepic.directional_coupler(wl=std_wl_um, gap=200, coupling_length=45)
3030

3131

3232
class Testgrating_coupler:
@@ -40,7 +40,7 @@ def test_instantiable(self):
4040
siepic.grating_coupler(pol="te", thickness=220, dwidth=0)
4141

4242
def test_s_params(self, std_wl_um):
43-
s = siepic.grating_coupler(wl=std_wl_um, pol="te")
43+
siepic.grating_coupler(wl=std_wl_um, pol="te")
4444

4545

4646
class Testhalf_ring:
@@ -56,7 +56,7 @@ def test_instantiable(self):
5656
)
5757

5858
def test_s_params(self, std_wl_um):
59-
s = siepic.half_ring(
59+
siepic.half_ring(
6060
wl=std_wl_um,
6161
pol="te",
6262
gap=50,
@@ -78,7 +78,7 @@ def test_instantiable(self):
7878
siepic.taper(w1=0.5, w2=1.0, length=10.0)
7979

8080
def test_s_params(self, std_wl_um):
81-
s = siepic.taper(wl=std_wl_um, w1=0.5, w2=1.0, length=10.0)
81+
siepic.taper(wl=std_wl_um, w1=0.5, w2=1.0, length=10.0)
8282

8383

8484
class Testterminator:
@@ -91,8 +91,8 @@ def test_instantiable(self):
9191
siepic.terminator(pol="tm")
9292

9393
def test_s_params(self, std_wl_um):
94-
s = siepic.terminator(wl=std_wl_um, pol="te")
95-
s = siepic.terminator(wl=std_wl_um, pol="tm")
94+
siepic.terminator(wl=std_wl_um, pol="te")
95+
siepic.terminator(wl=std_wl_um, pol="tm")
9696

9797

9898
class Testwaveguide:
@@ -106,7 +106,7 @@ def test_instantiable(self):
106106
siepic.waveguide(pol="te", length=100, width=500, height=220, loss=2)
107107

108108
def test_s_params(self, std_wl_um):
109-
s = siepic.waveguide(
109+
siepic.waveguide(
110110
wl=std_wl_um, pol="te", length=100, width=500, height=220, loss=2
111111
)
112112

@@ -120,4 +120,4 @@ def test_instantiable(self):
120120
siepic.y_branch(pol="te", thickness=220, width=500)
121121

122122
def test_s_params(self, std_wl_um):
123-
s = siepic.y_branch(wl=std_wl_um, pol="te")
123+
siepic.y_branch(wl=std_wl_um, pol="te")

0 commit comments

Comments
 (0)