Skip to content

Commit

Permalink
Removing CatchVisiblePokemonWorker's argument of cell (PokemonGoF#1352)
Browse files Browse the repository at this point in the history
  • Loading branch information
elicwhite authored and MFizz committed Jul 29, 2016
1 parent 1f9d3d1 commit bc6e293
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pokemongo_bot/cell_workers/catch_visible_pokmeon_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
from pokemongo_bot.cell_workers import PokemonCatchWorker

class CatchVisiblePokemonWorker(object):
def __init__(self, bot, cell):
def __init__(self, bot):
self.bot = bot
self.cell = cell;
self.cell = bot.cell;
self.api = bot.api
self.config = bot.config
self.position = bot.position
Expand Down

0 comments on commit bc6e293

Please sign in to comment.