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 c50ccf2 commit 78f89f0Copy full SHA for 78f89f0
tidy3d/components/microwave/path_spec_generator.py
@@ -1,5 +1,6 @@
1
"""Module for automatic determination of voltage and current integration specifications."""
2
3
+from itertools import chain
4
from math import isclose
5
6
import shapely
@@ -318,5 +319,5 @@ def _apply_symmetry(
318
319
PathSpecGenerator._apply_symmetry_to_box(box, dim, sim_center[dim])
320
for box in result
321
]
- result = result.extend(tmp_list)
322
+ result = list(chain.from_iterable(tmp_list))
323
return result
0 commit comments