Skip to content

Commit 9da69fc

Browse files
Merge branch '8328-nnunet-bundle-integration' of https://github.com/SimoneBendazzoli93/MONAI into 8328-nnunet-bundle-integration
2 parents 678334e + b0ecb2c commit 9da69fc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/source/apps.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,4 +288,4 @@ FastMRIReader
288288
.. autofunction:: monai.apps.nnunet.get_nnunet_monai_predictor
289289
.. autofunction:: monai.apps.nnunet.convert_nnunet_to_monai_bundle
290290
.. autofunction:: monai.apps.nnunet.convert_monai_bundle_to_nnunet
291-
.. autofunction:: monai.apps.nnunet.get_network_from_nnunet_plans
291+
.. autofunction:: monai.apps.nnunet.get_network_from_nnunet_plans

monai/apps/nnunet/nnunet_bundle.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -522,9 +522,9 @@ def subfiles(
522522
folder: str, join: bool = True, prefix: Optional[str] = None, suffix: Optional[str] = None, sort: bool = True
523523
) -> list[str]:
524524
if join:
525-
l = os.path.join # noqa: E741
525+
l = os.path.join
526526
else:
527-
l = lambda x, y: y # noqa: E741, E731
527+
l = lambda x, y: y # noqa: E731
528528
res = [
529529
l(folder, i.name)
530530
for i in Path(folder).iterdir()

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ huggingface_hub
6161
pyamg>=5.0.0
6262
git+https://github.com/facebookresearch/segment-anything.git@6fdee8f2727f4506cfbbe553e23b895e27956588
6363
onnx_graphsurgeon
64-
polygraphy
64+
polygraphy

0 commit comments

Comments
 (0)