Results: Minor change.

scenarios
Pierre-Antoine 2026-06-05 14:59:48 +02:00
parent 31ae0ab8e0
commit 76430322dd
1 changed files with 5 additions and 1 deletions

View File

@ -456,8 +456,12 @@ class PlotXY(PamhyrPlot):
overflow.append(pt_right)
for plot in self.overflow:
plot[0].remove()
try:
plot[0].remove()
except Exception as e:
logger_exception(e)
del plot[0]
self.overflow = []
for p in overflow: