From 7d0da5a2a400e3dc9f7696d9886de039d7b890ab Mon Sep 17 00:00:00 2001 From: Eli White Date: Mon, 15 Aug 2016 23:56:48 -0700 Subject: [PATCH] Fixing typo --- pokemongo_bot/inventory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pokemongo_bot/inventory.py b/pokemongo_bot/inventory.py index c59ba4b046..62a595b07d 100644 --- a/pokemongo_bot/inventory.py +++ b/pokemongo_bot/inventory.py @@ -304,7 +304,7 @@ def all(self): def add(self, pokemon): if pokemon.id <= 0: - raise ValueError("Can't add a pokemin whitout id") + raise ValueError("Can't add a pokemon without id") if pokemon.id in self._data: raise ValueError("Pokemon already present in the inventory") self._data[pokemon.id] = pokemon