Update to comply with new black rules

This commit is contained in:
Alan Rominger
2023-02-01 14:59:38 -05:00
parent 5ce6c14f74
commit f5785976be
323 changed files with 7 additions and 839 deletions

View File

@@ -12,7 +12,7 @@ logger = logging.getLogger('awx.sso.common')
def get_orgs_by_ids():
existing_orgs = {}
for (org_id, org_name) in Organization.objects.all().values_list('id', 'name'):
for org_id, org_name in Organization.objects.all().values_list('id', 'name'):
existing_orgs[org_name] = org_id
return existing_orgs