From e23fa6ac9e2eb202afc745ab52e0fa84e6129ba3 Mon Sep 17 00:00:00 2001 From: Christopher Waters Date: Tue, 8 Oct 2024 16:36:33 -0700 Subject: [PATCH] Formatting fix. --- .../lsst/analysis/tools/actions/plot/elements/scatterElement.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/analysis/tools/actions/plot/elements/scatterElement.py b/python/lsst/analysis/tools/actions/plot/elements/scatterElement.py index e583b631..e44543c1 100644 --- a/python/lsst/analysis/tools/actions/plot/elements/scatterElement.py +++ b/python/lsst/analysis/tools/actions/plot/elements/scatterElement.py @@ -104,7 +104,7 @@ def __call__(self, data: KeyedData, ax: Axes, **kwargs) -> KeyedData: data[self.xKey] if self.xKey is not None else range(len(data[self.valsKey])), # type: ignore data[self.valsKey], # type: ignore color=self.color if self.color is not None else None, - marker=self.marker if self.marker is not None else '.', + marker=self.marker if self.marker is not None else ".", linestyle=self.linestyle if self.linestyle is not None else None, linewidth=self.linewidth if self.linewidth is not None else None, markersize=self.markersize if self.markersize is not None else None,