def setUp(self):
     self.option_bytes = bytes.fromhex('005200041a2b3c4d')
     self.option_object = SolMaxRTOption(sol_max_rt=439041101)
     self.parse_option()
Beispiel #2
0
    def __init__(self, sol_max_rt: int, always_send: bool = False):
        option = SolMaxRTOption(sol_max_rt=sol_max_rt)
        option.validate()

        super().__init__(option, always_send=always_send)