summaryrefslogtreecommitdiff
path: root/battle/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'battle/common.py')
-rw-r--r--battle/common.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/battle/common.py b/battle/common.py
index ba3361c..dadc49d 100644
--- a/battle/common.py
+++ b/battle/common.py
@@ -16,7 +16,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
########################################################################################
# Battle Module - Common functions
-from utils import stdout, Battle, compress, dl_search
+from utils import stdout, Battle, compress, dl_search, allquests, Player
from consts import (SC_ATKUP, SC_DEFDOWN, SC_DEFUP, SC_ATKDOWN,
Ele_Fire, Ele_Water, Ele_Nature, Ele_Light, Ele_Shadow,
ST_TOWN,
@@ -391,3 +391,9 @@ def battle_endturn(token, spheres):
return sjson
+#################################################
+# Handles CI false positives in a lame way
+def pyflakes():
+ return allquests, Player
+
+