Passed
Push — 2.x ( 0ba30f...7ab1ba )
by Jordi
08:49
created

senaite.core.browser.widgets.analysisprofileswidget.AnalysisProfilesWidget.extract()   A

Complexity

Conditions 3

Size

Total Lines 19
Code Lines 12

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 12
dl 0
loc 19
rs 9.8
c 0
b 0
f 0
cc 3
nop 1
1
# -*- coding: utf-8 -*-
2
3
from zope import deprecation
4
5
# BBB
6
from .analysisprofile_services_widget import AnalysisProfileServicesWidget
7
8
9
class AnalysisProfilesWidget(AnalysisProfileServicesWidget):
10
    pass
11
12
13
deprecation.deprecated("AnalysisProfilesWidget",
14
                       "Moved to senaite.core.browser.widgets.analysisprofile_services_widget.AnalysisProfileServicesWidget")  # noqa E501
15