Skip to content

Commit

Permalink
fixed a coordinate error
Browse files Browse the repository at this point in the history
  • Loading branch information
douglascamata authored and MFizz committed Jul 29, 2016
1 parent 5d0a1e1 commit 9ef7d09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pokemongo_bot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def login(self):
self.api._auth_token = None
self.api._auth_provider = None
self.api._api_endpoint = None
lat, lng = *self.position[0:2]
lat, lng = self.position[0:2]
self.api.set_position(lat, lng, 0)

while not self.api.login(self.config.auth_service,
Expand Down

0 comments on commit 9ef7d09

Please sign in to comment.