Skip to content

Commit

Permalink
Fix linter error.
Browse files Browse the repository at this point in the history
  • Loading branch information
czwa committed Jan 27, 2021
1 parent d26e2e0 commit 0780bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/cp/pipe/ptc/cpSolvePtcTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ def fitPtc(self, dataset):
if dataset.ptcFitType:
ptcFitType = dataset.ptcFitType
else:
raise RuntimeError(f"ptcFitType is None of empty in PTC dataset.")
raise RuntimeError("ptcFitType is None of empty in PTC dataset.")
matrixSide = self.config.maximumRangeCovariancesAstier
nanMatrix = np.empty((matrixSide, matrixSide))
nanMatrix[:] = np.nan
Expand Down

0 comments on commit 0780bf2

Please sign in to comment.