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

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

Complexity

Conditions 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
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