PEP8, pylint and django-lint cleanups
This commit is contained in:
@@ -4,7 +4,7 @@ from common import TEMPORARY_DIRECTORY
|
||||
|
||||
|
||||
#http://stackoverflow.com/questions/123198/how-do-i-copy-a-file-in-python
|
||||
def copyfile(source, dest, buffer_size=1024*1024):
|
||||
def copyfile(source, dest, buffer_size=1024 * 1024):
|
||||
"""
|
||||
Copy a file from source to dest. source and dest
|
||||
can either be strings or any object with a read or
|
||||
@@ -26,8 +26,6 @@ def copyfile(source, dest, buffer_size=1024*1024):
|
||||
dest.close()
|
||||
|
||||
|
||||
def document_save_to_temp_dir(document, filename, buffer_size=1024*1024):
|
||||
def document_save_to_temp_dir(document, filename, buffer_size=1024 * 1024):
|
||||
temporary_path = os.path.join(TEMPORARY_DIRECTORY, filename)
|
||||
return document.save_to_file(temporary_path, buffer_size)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user