Update pythonsigner.py

This commit is contained in:
conomist 2026-01-20 16:15:58 +01:00 committed by GitHub
parent 2eb1ccc6c4
commit 31aa0e26a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -27,16 +27,6 @@ except ImportError:
import urllib as urlparse
class StdIOTransport(ServerTransport):
"""Uses std input/output for RPC"""
def receive_message(self):
return None, urlparse.unquote(sys.stdin.readline())
def send_reply(self, context, reply):
print(reply)
class PipeTransport(ServerTransport):
"""Uses std a pipe for RPC"""