We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93fbea7 commit 21028eeCopy full SHA for 21028ee
2 files changed
.github/workflows/blossom-ci.yml
@@ -49,7 +49,7 @@ jobs:
49
runs-on: ubuntu-latest
50
steps:
51
- name: Checkout code
52
- uses: actions/checkout@v4
+ uses: actions/checkout@v3
53
with:
54
repository: ${{ fromJson(needs.Authorization.outputs.args).repo }}
55
ref: ${{ fromJson(needs.Authorization.outputs.args).ref }}
monai/bundle/scripts.py
@@ -689,7 +689,7 @@ def get_bundle_info(
689
if version not in bundle_info:
690
raise ValueError(f"version: {version} of bundle: {bundle_name} is not existing.")
691
692
- return bundle_info[version] # type: ignore[no-any-return]
+ return bundle_info[version]
693
694
695
def run(
0 commit comments