Unverified Commit 1f614896 authored by Philipp Winter's avatar Philipp Winter
Browse files

Update documented return value.

The function is returning a bytes, and not a str.
parent 63ffb833
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -33,8 +33,8 @@ def generateQR(bridgelines, imageFormat='JPEG', bridgeSchema=False):
        client.
    :param bool bridgeSchema: If ``True``, prepend ``'bridge://'`` to the
        beginning of each bridge line before QR encoding.
    :rtype: str or ``None``
    :returns: The generated QRCode, as a string.
    :rtype: bytes or ``None``
    :returns: The generated QRCode, as a bytes.
    """
    logging.debug("Attempting to encode bridge lines into a QRCode...")