FlexiKey: define STORAGE in base class

avoids some mypy warnings.
This commit is contained in:
Thomas Waldmann 2023-01-30 02:59:20 +01:00
parent a863249394
commit f9078ebfa9
No known key found for this signature in database
GPG Key ID: 243ACFA951F78E01
1 changed files with 1 additions and 0 deletions

View File

@ -417,6 +417,7 @@ class AESKeyBase(KeyBase):
class FlexiKey:
FILE_ID = "BORG_KEY"
STORAGE = KeyBlobStorage.NO_STORAGE # override in subclass
@classmethod
def detect(cls, repository, manifest_data):