Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Nov 16, 2023
1 parent 9191377 commit 4964d18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/api/collaboration.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
confirm_authorized_api_call, \
confirm_allow_impersonation, confirm_organisation_admin_or_manager, confirm_external_api_call, \
is_organisation_admin_or_manager, is_application_admin, confirm_service_admin, \
confirm_organisation_api_collaboration, is_collaboration_admin, confirm_write_access, has_org_manager_unit_access
confirm_organisation_api_collaboration, confirm_write_access, has_org_manager_unit_access
from server.db.activity import update_last_activity_date
from server.db.db import db
from server.db.defaults import (default_expiry_date, full_text_search_autocomplete_limit, cleanse_short_name,
Expand Down
2 changes: 1 addition & 1 deletion server/test/auth/test_security.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,4 @@ def test_has_org_manager_unit_access(self):

collaboration = self.find_entity_by_name(Collaboration, ai_computing_name)
self.assertTrue(has_org_manager_unit_access(org_manager.id, collaboration))
self.assertFalse(has_org_manager_unit_access(org_manager.id, collaboration, org_manager_allowed=False))
self.assertFalse(has_org_manager_unit_access(org_manager.id, collaboration, org_manager_allowed=False))

0 comments on commit 4964d18

Please sign in to comment.