Skip to content

Commit

Permalink
Attempting to fix pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
sugetha24 committed Nov 7, 2023
1 parent 52d1a22 commit 04c6cc8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ def __get_reordered_configlets_list(

# Joining the 2 new list (configlets already present + new configlet in right order)
reordered_configlets_list = configlets_attached_get_configlet_info + new_configlets_list
MODULE_LOGGER.debug("reordered_configlets_list {}".format(reordered_configlets_list))
MODULE_LOGGER.debug("reordered_configlets_list %s", str(reordered_configlets_list))
# Find any reconcile configlet and move to the end of the reordered list.
reconciled_configlet_indexes = [index for index, configlet in enumerate(reordered_configlets_list) if configlet["reconciled"]]
reconciled_configlet_indexes.reverse()
Expand Down

0 comments on commit 04c6cc8

Please sign in to comment.