From 46147c545a00cb76710196a3e07361d995299d96 Mon Sep 17 00:00:00 2001 From: alexmarago Date: Thu, 31 Jul 2025 11:01:55 +0300 Subject: [PATCH] change siezedistribution ptype Change size distribution plot ptype to avoid overwrite of fitted plot. --- amespahdbpythonsuite/fitted.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/amespahdbpythonsuite/fitted.py b/amespahdbpythonsuite/fitted.py index ac71d8d..3652e3c 100644 --- a/amespahdbpythonsuite/fitted.py +++ b/amespahdbpythonsuite/fitted.py @@ -259,6 +259,8 @@ def plot(self, **keywords) -> None: ptype = "composition" elif keywords.get("residual"): ptype = "residual" + elif keywords.get("sizedistribution"): + ptype = "sizedistribution" else: ptype = "fitted"