X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fnew%2Fjumpavg%2FAbstractGroupClassifier.py;h=2612b009da37f3bdecab92126ce3bc65d6ebbfac;hp=26db758ea8e711a9ce670599704e77f0f7c3b765;hb=a2a0ab1cdec3567dcad46c2000337707777aa0ca;hpb=5120b1082aa70f6e75511e9d95a2a7c303e25f9a diff --git a/resources/tools/presentation/new/jumpavg/AbstractGroupClassifier.py b/resources/tools/presentation/new/jumpavg/AbstractGroupClassifier.py index 26db758ea8..2612b009da 100644 --- a/resources/tools/presentation/new/jumpavg/AbstractGroupClassifier.py +++ b/resources/tools/presentation/new/jumpavg/AbstractGroupClassifier.py @@ -11,10 +11,17 @@ # See the License for the specific language governing permissions and # limitations under the License. +"""Module holding AbstractGroupClassifier class.""" + from abc import ABCMeta, abstractmethod class AbstractGroupClassifier(object): + """Abstract class defining API for classifier. + + The classifier is an object with classify() method + which divides data into groups containing metadata. + """ __metaclass__ = ABCMeta