Satisfy "Codacy/PR Quality Review"

This commit is contained in:
Virgil Grigoras 2018-09-10 18:21:44 +02:00
parent 50ded1afc1
commit e08eccba5a
2 changed files with 1 additions and 3 deletions

View File

@ -552,7 +552,7 @@ def is_sha1(sha1):
if len(sha1) != 40:
return False
try:
temp = int(sha1, 16)
int(sha1, 16)
except ValueError:
return False
return True

View File

@ -1,7 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from builtins import OSError
try:
from googleapiclient.errors import HttpError
except ImportError: