Conditions | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 3.6875 |
Changes | 0 |
1 | """ |
||
31 | 1 | @staticmethod |
|
32 | def get_html(node): |
||
1 ignored issue
–
show
|
|||
33 | """ |
||
34 | Returns string with generated HTML tag. |
||
35 | |||
36 | :param sdoc.sdoc2.node.SmileNode.SmileNode node: The smile node. |
||
37 | |||
38 | :rtype: str |
||
39 | """ |
||
40 | return Html.generate_element('b', {}, 'SMILE') |
||
41 | |||
42 | # ---------------------------------------------------------------------------------------------------------------------- |
||
44 |