From fc34285c4661a349fa443c91f6e6b39fc9f5aa44 Mon Sep 17 00:00:00 2001 From: James Emerton Date: Wed, 26 Jan 2022 21:32:25 -0800 Subject: [PATCH 1/2] Correct terminology --- docs/BEST_PRACTICES.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/BEST_PRACTICES.md b/docs/BEST_PRACTICES.md index cbf04de..3262538 100644 --- a/docs/BEST_PRACTICES.md +++ b/docs/BEST_PRACTICES.md @@ -63,9 +63,9 @@ unrecoverable error is detected, exit the script with a non-zero error code (raise an exception or use `sys.exit(1)`) -## Module Structure +## Package Structure -Source code should be in a module (folder with `__init__.py` file) and not +Source code should be in a package (folder with `__init__.py` file) and not just a script (`module.py` file). From 4d788c57edc6019c05775108c702e7675f2b03c0 Mon Sep 17 00:00:00 2001 From: James Emerton Date: Wed, 26 Jan 2022 21:59:27 -0800 Subject: [PATCH 2/2] Update BEST_PRACTICES.md --- docs/BEST_PRACTICES.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/BEST_PRACTICES.md b/docs/BEST_PRACTICES.md index 3262538..a2dd53a 100644 --- a/docs/BEST_PRACTICES.md +++ b/docs/BEST_PRACTICES.md @@ -65,8 +65,8 @@ code (raise an exception or use `sys.exit(1)`) ## Package Structure -Source code should be in a package (folder with `__init__.py` file) and not -just a script (`module.py` file). +Source code should be in a package (folder with `__init__.py` file) and +not just a script (`module.py` file). ## Schemas