Revize ef65f488
Přidáno uživatelem Stanislav Král před asi 4 roky(ů)
src/dao/certificate_repository.py | ||
---|---|---|
113 | 113 |
else: |
114 | 114 |
return None |
115 | 115 |
|
116 |
def read_all(self, filter_type: int = None): |
|
116 |
def read_all(self, filter_type: int = None) -> List[Certificate]:
|
|
117 | 117 |
""" |
118 | 118 |
Reads (selects) all certificates (with type). |
119 | 119 |
|
Také k dispozici: Unified diff
Re #8472 - Implemented get_chain_of_trust method and added an integration test validating it
Added return type specification to read_all method in CertificateRepository