You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "./pokecli.py", line 120, in
main()
File "./pokecli.py", line 117, in main
bot.take_step()
File "/opt/PokemonGo-Bot/bot.py", line 29, in take_step
self.stepper.take_step()
File "/opt/PokemonGo-Bot/stepper.py", line 41, in take_step
self._walk_to(self.config.walk, *position)
File "/opt/PokemonGo-Bot/stepper.py", line 72, in _walk_to
dist = self.distance(i2f(self.api._position_lat), i2f(self.api._position_lng), lat, lng)
AttributeError: 'Stepper' object has no attribute 'distance'
any ideas?
The text was updated successfully, but these errors were encountered:
This should be closed, getting a current copy of stepper.py resolves this error. dist = self.distance should be dist = distance, it was fixed in a recent commit.
Hi I am getting the following:
Traceback (most recent call last):
File "./pokecli.py", line 120, in
main()
File "./pokecli.py", line 117, in main
bot.take_step()
File "/opt/PokemonGo-Bot/bot.py", line 29, in take_step
self.stepper.take_step()
File "/opt/PokemonGo-Bot/stepper.py", line 41, in take_step
self._walk_to(self.config.walk, *position)
File "/opt/PokemonGo-Bot/stepper.py", line 72, in _walk_to
dist = self.distance(i2f(self.api._position_lat), i2f(self.api._position_lng), lat, lng)
AttributeError: 'Stepper' object has no attribute 'distance'
any ideas?
The text was updated successfully, but these errors were encountered: