Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ on:

jobs:
check-schema:
uses: Lightning-AI/utilities/.github/workflows/[email protected].2
uses: Lightning-AI/utilities/.github/workflows/[email protected].4
with:
azure-dir: ".azure"

check-code:
uses: Lightning-AI/utilities/.github/workflows/check-code[email protected].2
uses: Lightning-AI/utilities/.github/workflows/check-typing[email protected].4
with:
actions-ref: v0.11.2
actions-ref: v0.11.4
extra-typing: typing

check-package:
uses: Lightning-AI/utilities/.github/workflows/[email protected].2
uses: Lightning-AI/utilities/.github/workflows/[email protected].4
with:
actions-ref: v0.11.2
actions-ref: v0.11.4
artifact-name: dist-packages-${{ github.sha }}
import-name: "pl_bolts"
testing-matrix: |
Expand Down
2 changes: 1 addition & 1 deletion src/pl_bolts/callbacks/data_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def _is_logger_available(self, logger: Logger) -> bool:
if not isinstance(logger, self.supported_loggers):
rank_zero_warn(
f"{self.__class__.__name__} does not support logging with {logger.__class__.__name__}."
f" Supported loggers are: {', '.join((str(x.__name__) for x in self.supported_loggers))}"
f" Supported loggers are: {', '.join(str(x.__name__) for x in self.supported_loggers)}"
)
available = False
return available
Expand Down
Loading