-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): only print colored text when attached to terminal
- Loading branch information
1 parent
49f689f
commit c29ea9a
Showing
2 changed files
with
81 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
"""Module providing batchlink main APIs.""" | ||
|
||
from .core import batch_link, formatted_paths, remove | ||
from .core import batch_link, color_print, formatted_paths, remove | ||
|
||
__version__ = "0.1.0" | ||
|
||
__all__ = ["__version__", "formatted_paths", "remove", "batch_link"] | ||
__all__ = [ | ||
"__version__", | ||
"batch_link", | ||
"color_print", | ||
"formatted_paths", | ||
"remove", | ||
] |
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