Skip to content

Commit

Permalink
Omit erroneous extra set of parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
laurenam committed Oct 23, 2023
1 parent 3658f48 commit 7dac2bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/lsst/analysis/drp/colorColorFitPlot.py
Expand Up @@ -297,10 +297,10 @@ def colorColorFitPlot(self, catPlot, plotInfo, fitParams):
the fit line is given in a histogram in the second panel.
"""

self.log.info(("Plotting %s: the values of %s against %s on a color-color plot with the area "
"used for calculating the stellar locus fits marked.",
self.config.connections.plotName, self.config.axisLabels["x"],
self.config.axisLabels["y"]))
self.log.info("Plotting %s: the values of %s against %s on a color-color plot with the area "
"used for calculating the stellar locus fits marked.",
self.config.connections.plotName, self.config.axisLabels["x"],
self.config.axisLabels["y"])

# Define a new colormap
newBlues = mkColormap(["darkblue", "paleturquoise"])
Expand Down

0 comments on commit 7dac2bc

Please sign in to comment.