Merge pull request #3580 from beemeeupnow/typo_fix

Fix duplicate assignment typo
pull/3570/head
Derek Pierre 2025-03-12 11:44:44 -04:00 committed by GitHub
commit 234d829893
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 3 deletions

View File

@ -420,9 +420,7 @@ class CharacterConfiguration(BaseConfiguration):
self.crypto_power = crypto_power
if keystore_path and not keystore:
keystore = Keystore(keystore_path=keystore_path)
self.__keystore = self.__keystore = keystore or NO_KEYSTORE_ATTACHED.bool_value(
False
)
self.__keystore = keystore or NO_KEYSTORE_ATTACHED.bool_value(False)
self.keystore_dir = (
Path(keystore.keystore_path).parent
if keystore