mirror of
https://github.com/LazoCoder/Pokemon-Terminal
synced 2025-01-25 10:35:00 +00:00
12 lines
249 B
Python
12 lines
249 B
Python
|
from adapter.base import TerminalAdapterInterface
|
||
|
|
||
|
|
||
|
class NullAdapter(TerminalAdapterInterface):
|
||
|
err = "Terminal emulator not supported."
|
||
|
|
||
|
def clear(self):
|
||
|
print(self.err)
|
||
|
|
||
|
def set_pokemon(self, pokemon):
|
||
|
print(self.err)
|