menu_qrcode docstring and formatting

This commit is contained in:
lakshyacis 2019-12-21 12:44:13 +05:30
parent 624d96fbb9
commit 7b0bf84585
No known key found for this signature in database
GPG Key ID: D2C539C8EC63E9EB
1 changed files with 3 additions and 5 deletions

View File

@ -1,8 +1,5 @@
# -*- coding: utf-8 -*-
"""
src/plugins/menu_qrcode.py
==========================
A menu plugin showing QR-Code for bitmessage address in modal dialog.
"""
@ -18,7 +15,8 @@ from pybitmessage.tr import _translate
class Image(qrcode.image.base.BaseImage): # pylint: disable=abstract-method
"""Image output class for qrcode using QPainter"""
def __init__(self, border, width, box_size): # pylint: disable=super-init-not-called
def __init__(self, border, width, box_size):
# pylint: disable=super-init-not-called
self.border = border
self.width = width
self.box_size = box_size