electricalgorithm / QualityConrolMirrorProduction

Missing class docstring PY-D0002
Documentation
Minor
a year agoa year old
Docstring missing for class DebugLevels
17        self.image_save_directory = image_save_location
18
19        # Create a debug level.
20        class DebugLevels:21            RESULT = 0
22            INFO = 1
23            ERROR = 2
Docstring missing for class ImageToOrder
123        """
124        # Create a class to remove direct access to the image array
125        # when using cv2.reshape.
126        class ImageToOrder:127            def __init__(self, image_as_numpy_array):
128                self._numpy_array_ = image_as_numpy_array
129