Skip to content

Commit 75fa213

Browse files
committed
(no issue) fix confusing variable naming.
1 parent fc7ed23 commit 75fa213

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

user_sync/config.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -278,11 +278,11 @@ def get_rule_options(self):
278278
exclude_identity_types = exclude_identity_type_names = []
279279
exclude_users = exclude_users_regexps = []
280280
exclude_groups = exclude_group_names = []
281-
umapi_config = self.main_config.get_dict_config('adobe_users', True)
282-
if umapi_config:
283-
exclude_identity_type_names = umapi_config.get_list('exclude_identity_types', True) or []
284-
exclude_users_regexps = umapi_config.get_list('exclude_users', True) or []
285-
exclude_group_names = umapi_config.get_list('exclude_adobe_groups', True) or []
281+
adobe_config = self.main_config.get_dict_config('adobe_users', True)
282+
if adobe_config:
283+
exclude_identity_type_names = adobe_config.get_list('exclude_identity_types', True) or []
284+
exclude_users_regexps = adobe_config.get_list('exclude_users', True) or []
285+
exclude_group_names = adobe_config.get_list('exclude_adobe_groups', True) or []
286286
for name in exclude_identity_type_names:
287287
message_format = 'Illegal value in exclude_identity_types: %s'
288288
identity_type = user_sync.identity_type.parse_identity_type(name, message_format)

0 commit comments

Comments
 (0)