Merge pull request #22256 from edx/feanil/fix_py3_quality

Fix pep 8 violations.
This commit is contained in:
Feanil Patel
2019-11-12 09:59:18 -05:00
committed by GitHub
4 changed files with 5 additions and 5 deletions

View File

@@ -771,7 +771,7 @@ def _extract_missing_pii_annotations(filename):
2. A bool indicating whether the coverage is still below the threshold, and
3. The full report as a string.
"""
uncovered_models = None
uncovered_models = 0
pii_check_passed = True
if os.path.isfile(filename):
with io.open(filename, 'r') as report_file:

View File

@@ -159,7 +159,7 @@ def get_file_from_s3(bucket_name, zipfile_name, path):
"""
Get the file from s3 and save it to disk.
"""
print (u"Retrieving {} from bucket {}.".format(zipfile_name, bucket_name))
print(u"Retrieving {} from bucket {}.".format(zipfile_name, bucket_name))
conn = boto.connect_s3(anon=True)
bucket = conn.get_bucket(bucket_name)
key = boto.s3.key.Key(bucket=bucket, name=zipfile_name)
@@ -194,7 +194,7 @@ def refresh_bokchoy_db_cache_from_s3(fingerprint, bucket_name, bokchoy_db_files)
zipfile_name = '{}.tar.gz'.format(fingerprint)
get_file_from_s3(bucket_name, zipfile_name, path)
zipfile_path = os.path.join(path, zipfile_name)
print ("Extracting db cache files.")
print("Extracting db cache files.")
extract_files_from_zip(bokchoy_db_files, zipfile_path, path)
os.remove(zipfile_path)

View File

@@ -2,6 +2,6 @@
set -e
export LOWER_PYLINT_THRESHOLD=1000
export UPPER_PYLINT_THRESHOLD=2100
export UPPER_PYLINT_THRESHOLD=3250
export ESLINT_THRESHOLD=5530
export STYLELINT_THRESHOLD=880

View File

@@ -217,7 +217,7 @@ def _get_course_block_counts(auth_token, block_url):
response = requests.get(block_url, headers=headers)
if response.status_code != 200:
print ("url {} returned status code {}".format(block_url, response.status_code))
print("url {} returned status code {}".format(block_url, response.status_code))
return {}
response_json = response.json()