Skip to content

Commit 2cdd721

Browse files
committed
add exports for action and bot classes in bot submodule
1 parent f7fd822 commit 2cdd721

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

clashroyalebuildabot/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Exports for clashroyalebuildabot
2-
from .bot import PeteBot, RandomBot, StandardBot, TwoSixHogCycle
2+
from .bot import PeteBot, RandomBot, StandardBot, TwoSixHogCycle, Action, Bot
33
from .data import constants
44
from .screen import Screen
55
from .state import (CardDetector, Detector, NumberDetector, OnnxDetector,
@@ -17,5 +17,7 @@
1717
"NumberDetector",
1818
"UnitDetector",
1919
"CardDetector",
20-
"Screen"
20+
"Screen",
21+
"Action",
22+
"Bot"
2123
]

clashroyalebuildabot/bot/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33
from .pete import PeteBot
44
from .random import RandomBot
55
from .standard import StandardBot
6+
from .action import Action
7+
from .bot import Bot
68
__all__ = [
79
"TwoSixHogCycle",
810
"PeteBot",
911
"RandomBot",
10-
"StandardBot"
12+
"StandardBot",
13+
"Action",
14+
"Bot"
1115
]

0 commit comments

Comments
 (0)