Skip to content

Commit 8d132f8

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 78a7d14 commit 8d132f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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()

0 commit comments

Comments
 (0)