diff options
author | elijah <elijah@riseup.net> | 2014-09-16 16:40:52 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2014-09-19 14:23:14 -0700 |
commit | c29b1dd9345e01e761b9891728ecd0b8d964a02d (patch) | |
tree | 79bda358ee3afe316cc0e0181b4efd9fa583f0b8 /src/leap/bitmask/gui/flashable.py | |
parent | 6166ffedcae0763f3c00076c79e74847f5c80823 (diff) |
single pref win: gets the autopep8 beauty scrub.
Diffstat (limited to 'src/leap/bitmask/gui/flashable.py')
-rw-r--r-- | src/leap/bitmask/gui/flashable.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/leap/bitmask/gui/flashable.py b/src/leap/bitmask/gui/flashable.py index 94e3ab60..a26d1ec6 100644 --- a/src/leap/bitmask/gui/flashable.py +++ b/src/leap/bitmask/gui/flashable.py @@ -14,7 +14,9 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. + class Flashable(object): + """ An abstract super class to give a QWidget handy methods for diplaying alert messages inline. The widget inheriting from this class must have @@ -72,4 +74,3 @@ class Flashable(object): def hide_flash(self): self._setup() self.widget.setVisible(False) - |