Skip to content

Commit a2c49df

Browse files
author
qiuapeng
committed
目录结构调整
1 parent 9709234 commit a2c49df

36 files changed

+21
-17
lines changed
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import logging
22

3-
from core.common import globle, helper
3+
from common import helper, globle
44

55
log = logging.getLogger(__name__)
66
log.setLevel(logging.DEBUG)
File renamed without changes.
File renamed without changes.

core/__init__.py

Whitespace-only changes.

core/game/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from core.common import memory
1+
from common import memory
22

33
mem = memory.Memory()

core/game/auto.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
import time
88
import traceback
99

10-
from core.common import logger, config, helper
10+
from common import config
11+
from common import helper, logger
1112
from core.game import mem
1213
from core.game import call, init, address
1314

core/game/call.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import time
22

3-
from core.common import helper
3+
from common import helper
44
from core.game import mem
55
from core.game import init, address
66

0 commit comments

Comments
 (0)