Skip to content

Commit

Permalink
Text was not showing in Wells
Browse files Browse the repository at this point in the history
  • Loading branch information
tryexceptpass committed Apr 30, 2018
1 parent ca354b0 commit 85a562a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sofi/ui/well.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ class Well(Div):
"""Implements the Bootstrap Well <div class="well">"""

def __init__(self, text=None, size=None, cl=None, ident=None, style=None, attrs=None):
super().__init__(cl=cl, ident=ident, style=style, attrs=attrs)
super().__init__(text=text, cl=cl, ident=ident, style=style, attrs=attrs)

self.size = size
self.text = text

def __repr__(self):
return "<Well(text='" + self.text + "')>"
Expand Down

0 comments on commit 85a562a

Please sign in to comment.