Skip to content

Commit

Permalink
fix: set while at True
Browse files Browse the repository at this point in the history
  • Loading branch information
sijis committed Jun 8, 2022
1 parent 1580672 commit 7e3c262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion errbot/plugin_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ def get_plugins_activation_order(self) -> List[str]:
name: set(info.dependencies) for name, info in self.plugin_infos.items()
}
plugins_in_cycle = set()
while 1:
while True:
plugins_sorter = TopologicalSorter(plugins_graph)
try:
# Return plugins which are part of a circular dependency at the end,
Expand Down

0 comments on commit 7e3c262

Please sign in to comment.