From ed537de7f859190f8ecaea636d9889f36f28a06f Mon Sep 17 00:00:00 2001 From: Toporin Date: Thu, 21 Mar 2024 09:28:42 +0000 Subject: [PATCH] Satochip: correct flake8 issue in __init__.py flake8 . --count --select="$ELECTRUM_LINTERS" --ignore="$ELECTRUM_LINTERS_IGNORE" --show-source --statistics --exclude "*_pb2.py,electrum/_vendor/" ./electrum/plugins/satochip/__init__.py:6:23: W292 no newline at end of file available_for = ['qt'] ^ 1 W292 no newline at end of file --- electrum/plugins/satochip/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/plugins/satochip/__init__.py b/electrum/plugins/satochip/__init__.py index 78a3d14c3217..75b91583a857 100644 --- a/electrum/plugins/satochip/__init__.py +++ b/electrum/plugins/satochip/__init__.py @@ -3,4 +3,4 @@ description = 'Provides support for Satochip hardware wallet' requires = [('satochip', 'github.com/Toporin/pysatochip')] registers_keystore = ('hardware', 'satochip', "Satochip wallet") -available_for = ['qt'] \ No newline at end of file +available_for = ['qt']