mirror of
https://github.com/koush/scrypted.git
synced 2026-02-06 23:42:19 +00:00
10 lines
257 B
Python
10 lines
257 B
Python
from asyncore import write
|
|
import code
|
|
|
|
class ScryptedConsole(code.InteractiveConsole):
|
|
def write(self, data: str) -> None:
|
|
return super().write(data)
|
|
|
|
def raw_input(self, prompt: str) -> str:
|
|
return super().raw_input(prompt=prompt)
|