server: rename to plugin_remote.py

This commit is contained in:
Koushik Dutta
2023-02-16 23:26:59 -08:00
parent 282707cf4a
commit 44af4ce006
3 changed files with 1 additions and 10 deletions

View File

@@ -1,9 +0,0 @@
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)