1
0
Fork 0
mirror of synced 2025-07-04 20:37:34 +02:00

Improve type annotation coverage

This commit is contained in:
jvoisin 2018-10-23 16:32:28 +02:00
parent f1a071d460
commit 9a81b3adfd
4 changed files with 4 additions and 4 deletions

View file

@ -40,7 +40,7 @@ DEPENDENCIES = {
def check_dependencies() -> dict:
def check_dependencies() -> Dict[str, bool]:
ret = collections.defaultdict(bool) # type: Dict[str, bool]
ret['Exiftool'] = True if exiftool._get_exiftool_path() else False