island: Format cc/environment/utils.py with black

This commit is contained in:
shreyamalviya 2021-06-15 00:06:40 +05:30
parent 443b66e9d9
commit 5ea046eda5
1 changed files with 13 additions and 11 deletions

View File

@ -83,17 +83,19 @@ def _create_secure_file_windows(path: str):
file_creation = win32file.CREATE_NEW # fails if file exists
file_attributes = win32file.FILE_FLAG_BACKUP_SEMANTICS
win32file.CloseHandle(win32file.CreateFile(
path,
file_access,
file_sharing,
security_attributes,
file_creation,
file_attributes,
win32job.CreateJobObject(
None, ""
), # https://stackoverflow.com/questions/46800142/in-python-with-pywin32-win32job-the-createjobobject-function-how-do-i-pass-nu # noqa: E501
))
win32file.CloseHandle(
win32file.CreateFile(
path,
file_access,
file_sharing,
security_attributes,
file_creation,
file_attributes,
win32job.CreateJobObject(
None, ""
), # https://stackoverflow.com/questions/46800142/in-python-with-pywin32-win32job-the-createjobobject-function-how-do-i-pass-nu # noqa: E501
)
)
except Exception as ex:
LOG.error(f'Could not create a file at "{path}": {str(ex)}')