Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
mfisherlevine committed Jun 5, 2024
1 parent 65ed0d9 commit b6cd2fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/summit/extras/logUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def _getFailDataRefs(self) -> list[dafButler.DatasetRef]:
fails.append(dataRef)
return fails

def _printLineIf(self, logLine: dafButler.ButlerLogRecord) -> None:
def _printLineIf(self, logLine: dafButler.logging.ButlerLogRecord) -> None:
"""Print the line if the name of the logger isn't in IGNORE_LOGS_FROM.
Parameters
Expand All @@ -225,7 +225,7 @@ def _printLineIf(self, logLine: dafButler.ButlerLogRecord) -> None:
self._printFormattedLine(logLine)

@staticmethod
def _printFormattedLine(logLine: dafButler.ButlerLogRecord) -> None:
def _printFormattedLine(logLine: dafButler.logging.ButlerLogRecord) -> None:
"""Print the line, formatted as it would be for a normal task.
Parameters
Expand Down

0 comments on commit b6cd2fb

Please sign in to comment.