@@ -68,22 +68,22 @@ def _parse_response(self, buffer: bytes) -> dict:
6868
6969 # Parse connection info
7070 num_open_public_conn = struct .unpack ("!I" , br .read_bytes (4 ))[0 ]
71- num_open_private_conn = struct .unpack ("!I" , br .read_bytes (4 ))[0 ]
71+ _ = struct .unpack ("!I" , br .read_bytes (4 ))[0 ] # num_open_private_conn
7272 num_public_conn = struct .unpack ("!I" , br .read_bytes (4 ))[0 ]
73- num_private_conn = struct .unpack ("!I" , br .read_bytes (4 ))[0 ]
73+ _ = struct .unpack ("!I" , br .read_bytes (4 ))[0 ] # num_private_conn
7474
7575 # Parse flags
76- should_advertise = br .read_bytes (1 )[0 ] == 1
76+ _ = br .read_bytes (1 )[0 ] == 1 # should_advertise
7777 is_lan_match = br .read_bytes (1 )[0 ] == 1
7878 uses_stats = br .read_bytes (1 )[0 ] == 1
79- allow_join_in_progress = br .read_bytes (1 )[0 ] == 1
80- allow_invites = br .read_bytes (1 )[0 ] == 1
81- uses_presence = br .read_bytes (1 )[0 ] == 1
82- allow_join_via_presence = br .read_bytes (1 )[0 ] == 1
83- uses_arbitration = br .read_bytes (1 )[0 ] == 1
79+ _ = br .read_bytes (1 )[0 ] == 1 # allow_join_in_progress
80+ _ = br .read_bytes (1 )[0 ] == 1 # allow_invites
81+ _ = br .read_bytes (1 )[0 ] == 1 # uses_presence
82+ _ = br .read_bytes (1 )[0 ] == 1 # allow_join_via_presence
83+ _ = br .read_bytes (1 )[0 ] == 1 # uses_arbitration
8484
8585 if self .packet_version >= 5 :
86- anti_cheat_protected = br .read_bytes (1 )[0 ] == 1
86+ _ = br .read_bytes (1 )[0 ] == 1 # anti_cheat_protected
8787
8888 # Read owner info
8989 owner_id = br .read_bytes (8 )
0 commit comments