lakshyacis
3 years ago
No known key found for this signature in database
GPG Key ID: D2C539C8EC63E9EB
1 changed files with
3 additions and
5 deletions
-
src/plugins/menu_qrcode.py
|
|
@ -1,8 +1,5 @@ |
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
""" |
|
|
|
src/plugins/menu_qrcode.py |
|
|
|
========================== |
|
|
|
|
|
|
|
A menu plugin showing QR-Code for bitmessage address in modal dialog. |
|
|
|
""" |
|
|
|
|
|
|
@ -15,10 +12,11 @@ from pybitmessage.tr import _translate |
|
|
|
|
|
|
|
|
|
|
|
# http://stackoverflow.com/questions/20452486 |
|
|
|
class Image(qrcode.image.base.BaseImage): # pylint: disable=abstract-method |
|
|
|
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 |
|
|
|