csv_metadata_quality/check.py: Remove unnecessary pass
continuous-integration/drone/push Build is passing Details

LGTM warned that these pass statements are not necessary.

See: https://lgtm.com/rules/910088/
This commit is contained in:
Alan Orth 2021-04-20 08:20:13 +03:00
parent dbc0437d59
commit a8fe623f4c
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 0 additions and 6 deletions

View File

@ -178,13 +178,9 @@ def language(field):
if len(value) == 2:
if not languages.get(alpha_2=value):
print(f"{Fore.RED}Invalid ISO 639-1 language: {Fore.RESET}{value}")
pass
elif len(value) == 3:
if not languages.get(alpha_3=value):
print(f"{Fore.RED}Invalid ISO 639-3 language: {Fore.RESET}{value}")
pass
else:
print(f"{Fore.RED}Invalid language: {Fore.RESET}{value}")
@ -305,8 +301,6 @@ def spdx_license_identifier(field):
if value not in spdx_license_list.LICENSES:
print(f"{Fore.YELLOW}Non-SPDX license identifier: {Fore.RESET}{value}")
pass
return