diff options
Diffstat (limited to 'resources/tools/presentation/new/jumpavg/BitCountingMetadataFactory.py')
-rw-r--r-- | resources/tools/presentation/new/jumpavg/BitCountingMetadataFactory.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/resources/tools/presentation/new/jumpavg/BitCountingMetadataFactory.py b/resources/tools/presentation/new/jumpavg/BitCountingMetadataFactory.py index 5a7b393b55..567c3d4fe6 100644 --- a/resources/tools/presentation/new/jumpavg/BitCountingMetadataFactory.py +++ b/resources/tools/presentation/new/jumpavg/BitCountingMetadataFactory.py @@ -11,6 +11,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +"""Module holding BitCountingMetadataFactory class.""" + import math from AvgStdevMetadata import AvgStdevMetadata @@ -19,7 +21,10 @@ from BitCountingMetadata import BitCountingMetadata class BitCountingMetadataFactory(object): - """Class for factory which creates bit counting metadata from data.""" + """Class for factory which creates bit counting metadata from data. + + TODO: Summarize the methods? + """ @staticmethod def find_max_value(values): |