sc2/data.py", line 61, in <module>
AbilityId.TRAIN_ADEPT: AbilityId.TRAINWARP_ADEPT,
File "/usr/lib/python3.7/enum.py", line 349, in __getattr__
raise AttributeError(name) from None
AttributeError: TRAIN_ADEPT
Traceback (most recent call last):
File ".../GIT/sc2AI.py", line 1, in <module>
import sc2
File ".../sc2/__init__.py", line 19, in <module>
from .bot_ai import BotAI
File ".../sc2/bot_ai.py", line 11, in <module>
from .game_data import AbilityData, GameData
File ".../sc2/game_data.py", line 5, in <module>
from .constants import ZERGLING
File "/.../site-packages/sc2/constants.py", line 3, in <module>
from .ids.effect_id import *
File "/.../sc2/ids/effect_id.py", line 8
for item in EffectId:
^
Hi, after the update, I started getting a lot of errors, but I took care of most of them by following the instructions here: https://github.com/Dentosal/python-sc2/issues/283#issuecomment-495991889 and here: https://github.com/Dentosal/python-sc2/issues/266#issuecomment-487226425
Now however, I am getting this error:
Which is referring to the last line here:
However removing this line results in this error:
Any ideas?