From dd05ef84312bcef38f7c462a3f7230324e0d040d Mon Sep 17 00:00:00 2001 From: Jordan Welsman Date: Thu, 12 Jan 2023 00:12:12 -0800 Subject: [PATCH] refac: Renamed hello_world.py to utils.py to avoid function/filename clash. --- jutl/utilities/__init__.py | 10 +++++----- jutl/utilities/{hello_world.py => utils.py} | 0 2 files changed, 5 insertions(+), 5 deletions(-) rename jutl/utilities/{hello_world.py => utils.py} (100%) diff --git a/jutl/utilities/__init__.py b/jutl/utilities/__init__.py index e914de7..fb533d0 100644 --- a/jutl/utilities/__init__.py +++ b/jutl/utilities/__init__.py @@ -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__ \ No newline at end of file +__all__ = utils.__all__ \ No newline at end of file diff --git a/jutl/utilities/hello_world.py b/jutl/utilities/utils.py similarity index 100% rename from jutl/utilities/hello_world.py rename to jutl/utilities/utils.py