diff --git a/rcon/config.py b/rcon/config.py index 8c8bd84..6f1aa07 100644 --- a/rcon/config.py +++ b/rcon/config.py @@ -24,7 +24,6 @@ class Config(NamedTuple): host: str port: int passwd: str = None - prompt: str = 'RCON> ' @classmethod def from_string(cls, string: str) -> Config: @@ -54,8 +53,7 @@ class Config(NamedTuple): host = section['host'] port = section.getint('port') passwd = section.get('passwd') - prompt = section.get('prompt') - return cls(host, port, passwd, prompt) + return cls(host, port, passwd) def entries(config_parser: ConfigParser) -> Iterator[Tuple[str, Config]]: