From e3ad3e1afc58307e27196b85a9c386ff98c98f1a Mon Sep 17 00:00:00 2001 From: cclauss Date: Mon, 3 Jul 2017 16:41:35 +0200 Subject: [PATCH] NullAdapter.py accepts an image_file_path, not a pokemon See issue #83 --- adapter/implementations/NullAdapter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adapter/implementations/NullAdapter.py b/adapter/implementations/NullAdapter.py index 6b8fa6e..8d412b4 100644 --- a/adapter/implementations/NullAdapter.py +++ b/adapter/implementations/NullAdapter.py @@ -8,7 +8,7 @@ class NullAdapter(TerminalAdapterInterface): def is_available(): return True - def set_pokemon(self, pokemon): + def set_image_file_path(self, image_file_path): print(self.err) def clear(self):