Skip to content

Commit

Permalink
Fix linting errors in log message
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonKrughoff committed Dec 21, 2018
1 parent 043bc7a commit a0cda83
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/lsst/obs/base/mapper_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,10 @@ def test_map(self):
if not isinstance(location, lsst.daf.persistence.butlerLocation.ButlerComposite):
self._test_map(location, dataId)
else:
self.log.warn('ButlerComposite datasets are not tested for mapper functions. Though
ButlerComposites duck type as ButlerLocations in some ways, they do not
share enough methods to be usefully tested by the same function. Note
there are tests of the objects in the package in which they are implemented.')
self.log.warn("""ButlerComposite datasets are not tested for mapper functions. Though
ButlerComposites duck type as ButlerLocations in some ways, they do not
share enough methods to be usefully tested by the same function. Note
there are tests of the objects in the package in which they are implemented.""")
# This should be the same as above. Testing that both the generic and specific interface work for
# mapping the raw.
location = self.mapper.map("raw", dataId)
Expand Down

0 comments on commit a0cda83

Please sign in to comment.