@@ -19,21 +19,21 @@ class ComputerAddresses(TypedDict):
1919 left : str
2020 right : str
2121 stream : str
22- kizai :str
22+ kizai : str
2323
2424
2525PC_MAC_ADDRESSES : ComputerAddresses = {
2626 "left" : "04:7C:16:01:41:A7" ,
2727 "right" : "FC:34:97:BA:12:F1" ,
2828 "stream" : "34:5A:60:A9:5F:CA" ,
29- "kizai" : "4C:C5:D9:4F:2D:9D" ,
29+ "kizai" : "4C:C5:D9:4F:2D:9D" ,
3030}
3131
3232PC_IP_ADDRESSES : ComputerAddresses = {
3333 "left" : "192.168.39.31" ,
3434 "right" : "192.168.39.30" ,
3535 "stream" : "192.168.39.32" ,
36- "kizai" : "192.168.39.33"
36+ "kizai" : "192.168.39.33" ,
3737}
3838
3939
@@ -60,14 +60,14 @@ async def get_computer_status() -> ComputerStatus:
6060 "https://wol.vlldev.com/check_status" , params = {"ip_address" : PC_IP_ADDRESSES ["stream" ], "test_type" : "icmp" }
6161 ) as stream_response ,
6262 session .get (
63- "https://wol.vlldev.com/check_status" , params = {"ip_address" : PC_IP_ADDRESSES ["kizai" ], "test_type" : "icmp" }
63+ "https://wol.vlldev.com/check_status" , params = {"ip_address" : PC_IP_ADDRESSES ["kizai" ], "test_type" : "icmp" }
6464 ) as kizai_response ,
6565 ):
6666 left_is_wake = convert_status_str_to_bool (await left_response .text ())
6767 right_is_wake = convert_status_str_to_bool (await right_response .text ())
6868 stream_is_wake = convert_status_str_to_bool (await stream_response .text ())
6969 kizai_is_wake = convert_status_str_to_bool (await kizai_response .text ())
70- return {"left" : left_is_wake , "right" : right_is_wake , "stream" : stream_is_wake , "kizai" :kizai_is_wake }
70+ return {"left" : left_is_wake , "right" : right_is_wake , "stream" : stream_is_wake , "kizai" : kizai_is_wake }
7171
7272
7373class ComputerBootResult (Enum ):
0 commit comments