Skip to content

Commit

Permalink
refac: Renamed hello_world.py to utils.py to avoid function/filename …
Browse files Browse the repository at this point in the history
…clash.
  • Loading branch information
JordanWelsman committed Jan 12, 2023
1 parent 5e1a030 commit dd05ef8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions jutl/utilities/__init__.py
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.

0 comments on commit dd05ef8

Please sign in to comment.