aboutsummaryrefslogtreecommitdiff
path: root/src/argaze
diff options
context:
space:
mode:
authorThéo de la Hogue2024-04-03 11:16:04 +0200
committerThéo de la Hogue2024-04-03 11:16:04 +0200
commit9a979238fceb86d3a59a6f2fa1f9146b1313a33b (patch)
tree563a2a9b4f8dc32805335441cbf0c7308e4b066b /src/argaze
parent45aedc77e26c1c99061da6ea923ed11b36537829 (diff)
downloadargaze-9a979238fceb86d3a59a6f2fa1f9146b1313a33b.zip
argaze-9a979238fceb86d3a59a6f2fa1f9146b1313a33b.tar.gz
argaze-9a979238fceb86d3a59a6f2fa1f9146b1313a33b.tar.bz2
argaze-9a979238fceb86d3a59a6f2fa1f9146b1313a33b.tar.xz
Downcasing function names.
Diffstat (limited to 'src/argaze')
-rw-r--r--src/argaze/utils/UtilsFeatures.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/argaze/utils/UtilsFeatures.py b/src/argaze/utils/UtilsFeatures.py
index 05821b1..d9d6c41 100644
--- a/src/argaze/utils/UtilsFeatures.py
+++ b/src/argaze/utils/UtilsFeatures.py
@@ -27,7 +27,7 @@ from argaze import DataFeatures
import numpy
import cv2
-def printProgressBar (iteration:int, total:int, prefix:str = '', suffix:str = '', decimals:int = 1, length:int = 100, fill:str = '█', printEnd:str = "\r"):
+def print_progress_bar (iteration:int, total:int, prefix:str = '', suffix:str = '', decimals:int = 1, length:int = 100, fill:str = '█', printEnd:str = "\r"):
"""
Print iterations progress.
Call in a loop to create terminal progress bar.
@@ -51,7 +51,7 @@ def printProgressBar (iteration:int, total:int, prefix:str = '', suffix:str = ''
if iteration == total:
print()
-def importFromTestPackage(module: str) -> types.ModuleType:
+def import_from_test_package(module: str) -> types.ModuleType:
"""
Import module from ArGaze test package.