Skip to content

Commit

Permalink
🪥Fix circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
Aluerie committed Dec 31, 2024
1 parent df249bf commit f297ccb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions utils/dota/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
from .constants import *
from .dota2client import * # VALVE_SWITCH
from .pulsefire_clients import *
from .dota2client import *
from .schemas import *
from .storage import *
# from .valvepython import * # VALVE_SWITCH
2 changes: 1 addition & 1 deletion utils/dota/dota2client.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

from utils import const

from . import ODotaConstantsClient, StratzClient
from .pulsefire_clients import ODotaConstantsClient, StratzClient
from .storage import Abilities, Facets, Heroes, Items

if TYPE_CHECKING:
Expand Down

0 comments on commit f297ccb

Please sign in to comment.