Fix duplicate assignment typo

pull/3580/head
beemeeupnow 2025-03-09 19:16:34 -06:00
parent ed2bcae458
commit 8d673c5c4d
No known key found for this signature in database
GPG Key ID: 83D3310C9B18654D
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