Pokemon-Terminal/adapter/implementations/NullAdapter.py

12 lines
257 B
Python
Raw Normal View History

2017-06-21 11:49:16 +00:00
from adapter.base import TerminalAdapterInterface
class NullAdapter(TerminalAdapterInterface):
err = "This terminal emulator is not supported."
2017-06-21 11:49:16 +00:00
def clear(self):
print(self.err)
def set_pokemon(self, pokemon):
print(self.err)