-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
62 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
"""The :mod:`dcargs.extras` submodule contains helpers that complement :func:`dcargs.cli()`, but | ||
aren't considered part of the core interface.""" | ||
"""The :mod:`dcargs.extras` submodule contains helpers that complement :func:`dcargs.cli()`. | ||
Compared to the core interface, APIs here are more likely to be changed or deprecated. """ | ||
|
||
from .._argparse_formatter import set_accent_color | ||
from ._base_configs import subcommand_type_from_defaults | ||
from ._serialization import from_yaml, to_yaml | ||
|
||
__all__ = ["subcommand_type_from_defaults", "to_yaml", "from_yaml"] | ||
__all__ = [ | ||
"set_accent_color", | ||
"subcommand_type_from_defaults", | ||
"to_yaml", | ||
"from_yaml", | ||
] |