fix flake8 issues

This commit is contained in:
Arvind Tiwari 2018-02-22 14:18:55 +05:30
parent 3bb64478ed
commit 0879a3e324
1 changed files with 4 additions and 4 deletions

View File

@ -368,10 +368,10 @@ def write_report(all_reports, filename='frontend'):
all_reports (dict): A dictonary of report obtained from different tests
filename (str): An optional suffix for the output file
"""
full_filename = 'utils/optimize/optimize_' + filename + '.html'
output_file = os.path.join(
settings.PROJECT_DIR, full_filename
)
# full_filename = 'utils/optimize/optimize_' + filename + '.html'
# output_file = os.path.join(
# settings.PROJECT_DIR, full_filename
# )
with open('utils/optimize/op_frontend.json', 'w') as f:
json.dump(all_reports, f, indent=4)
# with open(output_file, 'w', newline='') as f: