forked from p15670423/monkey
island: Fix comment and statement formatting in file_utils.py
This commit is contained in:
parent
14371f3fba
commit
b648452b5f
|
@ -80,9 +80,8 @@ def _get_file_descriptor_for_new_secure_file_linux(path: str):
|
||||||
def _get_file_descriptor_for_new_secure_file_windows(path: str):
|
def _get_file_descriptor_for_new_secure_file_windows(path: str):
|
||||||
try:
|
try:
|
||||||
file_access = win32file.GENERIC_READ | win32file.GENERIC_WRITE
|
file_access = win32file.GENERIC_READ | win32file.GENERIC_WRITE
|
||||||
file_sharing = (
|
# subsequent open operations on the object will succeed only if read access is requested
|
||||||
win32file.FILE_SHARE_READ
|
file_sharing = win32file.FILE_SHARE_READ
|
||||||
) # subsequent open operations on the object will succeed only if read access is requested
|
|
||||||
security_attributes = win32security.SECURITY_ATTRIBUTES()
|
security_attributes = win32security.SECURITY_ATTRIBUTES()
|
||||||
security_attributes.SECURITY_DESCRIPTOR = (
|
security_attributes.SECURITY_DESCRIPTOR = (
|
||||||
windows_permissions.get_security_descriptor_for_owner_only_perms()
|
windows_permissions.get_security_descriptor_for_owner_only_perms()
|
||||||
|
|
Loading…
Reference in New Issue