[bug] fix get_default_parser in examples (#4764)

This commit is contained in:
Baizhou Zhang
2023-09-21 10:42:25 +08:00
committed by GitHub
parent c0a033700c
commit df66741f77
14 changed files with 36 additions and 26 deletions

View File

@@ -1,4 +1,11 @@
from .initialize import initialize, launch, launch_from_openmpi, launch_from_slurm, launch_from_torch
from .initialize import (
get_default_parser,
initialize,
launch,
launch_from_openmpi,
launch_from_slurm,
launch_from_torch,
)
__all__ = [
"launch",
@@ -6,4 +13,5 @@ __all__ = [
"launch_from_slurm",
"launch_from_torch",
"initialize",
"get_default_parser",
]