Skip to content

Commit

Permalink
fix: Import problem
Browse files Browse the repository at this point in the history
  • Loading branch information
B1ue-Dev committed Aug 20, 2023
1 parent 79b8068 commit 3aa869e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/exts/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@

import logging
import interactions
from const import EXT_CORE
from src.const import EXT_CORE


class Core(interactions.Extension):
"""exts/core Extension."""

def __init__(self, client: interactions.Client) -> None:
self.client: interactions.Client = client
[self.client.load_extension(f"exts.core.{ext}") for ext in EXT_CORE]
[self.client.load_extension(f"src.exts.core.{ext}") for ext in EXT_CORE]


def setup(client) -> None:
Expand Down

0 comments on commit 3aa869e

Please sign in to comment.