diff options
| -rw-r--r-- | bot/exts/backend/sync/__init__.py | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/exts/backend/sync/__init__.py b/bot/exts/backend/sync/__init__.py index 2541beaa8..e628b958b 100644 --- a/bot/exts/backend/sync/__init__.py +++ b/bot/exts/backend/sync/__init__.py @@ -3,5 +3,6 @@ from bot.bot import Bot  def setup(bot: Bot) -> None:      """Load the Sync cog.""" +    # Defer import to reduce side effects from importing the sync package.      from ._cog import Sync      bot.add_cog(Sync(bot))  |