Skip to content

Commit

Permalink
Try to fix new flake8 error F541
Browse files Browse the repository at this point in the history
  • Loading branch information
plazas committed May 12, 2020
1 parent 02c6877 commit 99ccf17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/lsst/cp/pipe/ptc.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def runDataRef(self, dataRef, visitPairs):
dataRef.put(dataset, datasetType="photonTransferCurveDataset")

butler = dataRef.getButler()
self.log.info(f"Writing linearizers: \n "
self.log.info("Writing linearizers: \n "
"lookup table (linear component of polynomial fit), \n "
"polynomial (coefficients for a polynomial correction), \n "
"and squared linearizer (quadratic coefficient from polynomial)")
Expand Down Expand Up @@ -1152,9 +1152,9 @@ def _plotPtc(self, dataset, ptcFitType, pdfPages):
a.set_title(f"{amp} (BAD)", fontsize=titleFontSize)
a2.set_title(f"{amp} (BAD)", fontsize=titleFontSize)

f.suptitle(f"PTC \n Fit: " + stringTitle, fontsize=20)
f.suptitle("PTC \n Fit: " + stringTitle, fontsize=20)
pdfPages.savefig(f)
f2.suptitle(f"PTC (log-log)", fontsize=20)
f2.suptitle("PTC (log-log)", fontsize=20)
pdfPages.savefig(f2)

# Plot mean vs time
Expand Down

0 comments on commit 99ccf17

Please sign in to comment.