Skip to content

Commit

Permalink
Move shared.types to type - conflict with stdlib types under docker/p…
Browse files Browse the repository at this point in the history
…y3.12
  • Loading branch information
bakert committed May 3, 2024
1 parent e7a1170 commit 72c4869
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion discordbot/commands/modobug.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from magic.models import Card
from shared import configuration, fetch_tools
from shared.pd_exception import OperationalException
from shared.types import BugData, ForumData
from shared.type import BugData, ForumData


class ModoBugs(Extension):
Expand Down
2 changes: 1 addition & 1 deletion magic/fetcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from shared.fetch_tools import FetchException
from shared.pd_exception import (InvalidArgumentException, InvalidDataException,
NotConfiguredException, TooFewItemsException)
from shared.types import BugData, ForumData
from shared.type import BugData, ForumData


async def achievement_cache_async() -> dict[str, dict[str, str]]:
Expand Down
2 changes: 1 addition & 1 deletion modo_bugs/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from shared import configuration
from shared.lazy import lazy_property
from shared.types import BugData
from shared.type import BugData

from . import fetcher, repo, strings
from .strings import BAD_AFFECTS_REGEX, BADCATS, CATEGORIES, IMAGES_REGEX, REGEX_CARDREF
Expand Down
File renamed without changes.

0 comments on commit 72c4869

Please sign in to comment.