summaryrefslogtreecommitdiff
path: root/pylint/reporters/ureports/nodes.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/reporters/ureports/nodes.py')
-rw-r--r--pylint/reporters/ureports/nodes.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/pylint/reporters/ureports/nodes.py b/pylint/reporters/ureports/nodes.py
index 01cbcb7..7a0dba4 100644
--- a/pylint/reporters/ureports/nodes.py
+++ b/pylint/reporters/ureports/nodes.py
@@ -95,22 +95,6 @@ class VerbatimText(Text):
* data : the text value as an encoded or unicode string
"""
-
-class Link(BaseComponent):
- """a labelled link
-
- attributes :
- * BaseComponent attributes
- * url : the link's target (REQUIRED)
- * label : the link's label as a string (use the url by default)
- """
- def __init__(self, url, label=None, **kwargs):
- super(Link, self).__init__(**kwargs)
- assert url
- self.url = url
- self.label = label or url
-
-
# container nodes #############################################################
class Section(BaseLayout):
@@ -173,11 +157,3 @@ class Table(BaseLayout):
self.cheaders = cheaders
self.rrheaders = rrheaders
self.rcheaders = rcheaders
-
-
-class List(BaseLayout):
- """some list data
-
- attributes :
- * BaseLayout attributes
- """