1
0

qml: fix imports, flake issues

This commit is contained in:
Sander van Grieken
2022-11-09 10:35:03 +01:00
parent 97254bb0ed
commit 89936689fb
3 changed files with 2 additions and 3 deletions

View File

@@ -202,7 +202,7 @@ class NewWalletWizard(AbstractWizard):
return wizard_data['seed_variant'] == 'bip39'
def is_multisig(self, wizard_data):
return 'multisig' in wizard_data and wizard_data['multisig'] == True
return 'multisig' in wizard_data and wizard_data['multisig'] is True
def on_wallet_type(self, wizard_data):
t = wizard_data['wallet_type']