Skip to content

Commit c5ed38e

Browse files
committed
deleted some additional print() statements I am no longer using
1 parent 1b0c387 commit c5ed38e

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

tidy3d/components/scene.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,6 @@ def _set_plot_bounds(
607607
matplotlib.axes._subplots.Axes
608608
The axes after setting the boundaries.
609609
"""
610-
611610
hlim, vlim = Scene._get_plot_lims(bounds=bounds, x=x, y=y, z=z, hlim=hlim, vlim=vlim, swap_axes=swap_axes)
612611
ax.set_xlim(hlim)
613612
ax.set_ylim(vlim)

tidy3d/components/simulation.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,6 @@ def plot(
494494
hlim, vlim = Scene._get_plot_lims(
495495
bounds=self.simulation_bounds, x=x, y=y, z=z, hlim=hlim, vlim=vlim, swap_axes=swap_axes
496496
)
497-
498497
ax = self.scene.plot(
499498
x=x,
500499
y=y,
@@ -505,7 +504,6 @@ def plot(
505504
fill_structures=fill_structures,
506505
swap_axes=swap_axes,
507506
)
508-
509507
ax = self.plot_sources(ax=ax, x=x, y=y, z=z, hlim=hlim, vlim=vlim, alpha=source_alpha, swap_axes=swap_axes)
510508
ax = self.plot_monitors(ax=ax, x=x, y=y, z=z, hlim=hlim, vlim=vlim, alpha=monitor_alpha, swap_axes=swap_axes)
511509
ax = self.plot_lumped_elements(
@@ -517,7 +515,6 @@ def plot(
517515
bounds=self.simulation_bounds, ax=ax, x=x, y=y, z=z, hlim=hlim, vlim=vlim, swap_axes=swap_axes
518516
)
519517
ax = self.plot_boundaries(ax=ax, x=x, y=y, z=z, swap_axes=swap_axes)
520-
521518
return ax
522519

523520
@equal_aspect

0 commit comments

Comments
 (0)