From 37a73440af7bce8b475abe92347c510d5ffbd26d Mon Sep 17 00:00:00 2001 From: shreyamalviya Date: Mon, 28 Jun 2021 22:43:25 +0530 Subject: [PATCH] tests: Add extra line in tests/monkey_island/utils.py to pass formatting checks --- monkey/tests/monkey_island/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/monkey/tests/monkey_island/utils.py b/monkey/tests/monkey_island/utils.py index 2ccd2c178..dd781f85d 100644 --- a/monkey/tests/monkey_island/utils.py +++ b/monkey/tests/monkey_island/utils.py @@ -17,6 +17,7 @@ def _get_acl_and_sid_from_path(path: str): acl = security_descriptor.GetSecurityDescriptorDacl() return acl, sid + def assert_windows_permissions(path: str): acl, user_sid = _get_acl_and_sid_from_path(path)