Skip to content

Commit 0eb618a

Browse files
committed
linting changes.
1 parent accd991 commit 0eb618a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_pyportal.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,7 @@ def fetch(self, refresh_url=None):
786786
return values[0]
787787
return values
788788

789-
def show_QR(self, qr_data, qr_size=1, x=0, y=0, hide_background=False): # pylint: disable=invalid-name
789+
def show_QR(self, qr_data, *, qr_size=1, x=0, y=0, hide_background=False): # pylint: disable=invalid-name
790790
"""Display a QR code on the TFT
791791
792792
:param qr_data: The data for the QR code.
@@ -836,7 +836,7 @@ def show_QR(self, qr_data, qr_size=1, x=0, y=0, hide_background=False): # pylin
836836
board.DISPLAY.show(self._qr_group)
837837
self._qr_only = hide_background
838838

839-
def hide_QR(self):
839+
def hide_QR(self): # pylint: disable=invalid-name
840840
"""Clear any QR codes that are currently on the screen
841841
"""
842842

0 commit comments

Comments
 (0)