-
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.
refac: Renamed hello_world.py to utils.py to avoid function/filename …
…clash.
- Loading branch information
1 parent
5e1a030
commit dd05ef8
Showing
2 changed files
with
5 additions
and
5 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,8 +1,8 @@ | ||
# Import hello_world.py so module | ||
# classes and functions are usable at | ||
# 'from jutl import formatting' level. | ||
from .hello_world import * | ||
# Import utils.py so module | ||
# functions are usable at | ||
# 'from jutl import utilities' level. | ||
from .utils import * | ||
|
||
# Only show functions specified in | ||
# submodule files to the outside world. | ||
__all__ = hello_world.__all__ | ||
__all__ = utils.__all__ |
File renamed without changes.