Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion opengsq/protocols/cod1.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ async def get_full_status(self, challenge: str = "xxx") -> Cod1Status:
def _parse_key_value_pairs(self, br: BinaryReader) -> dict[str, str]:
"""
Parses key-value pairs from the binary reader.
CoD1 uses backslash (\) as delimiter between keys and values.
CoD1 uses backslash ( \\ ) as delimiter between keys and values.

:param br: The BinaryReader object to parse from.
:return: A dictionary containing the parsed key-value pairs.
Expand Down
2 changes: 1 addition & 1 deletion opengsq/protocols/cod4.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ async def get_full_status(self, challenge: str = "xxx") -> Cod4Status:
def _parse_key_value_pairs(self, br: BinaryReader) -> dict[str, str]:
"""
Parses key-value pairs from the binary reader.
CoD4 uses backslash (\) as delimiter between keys and values.
CoD4 uses backslash ( \\ ) as delimiter between keys and values.

:param br: The BinaryReader object to parse from.
:return: A dictionary containing the parsed key-value pairs.
Expand Down
2 changes: 1 addition & 1 deletion opengsq/protocols/cod5.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ async def get_full_status(self, challenge: str = "xxx") -> Cod5Status:
def _parse_key_value_pairs(self, br: BinaryReader) -> dict[str, str]:
"""
Parses key-value pairs from the binary reader.
CoD5 uses backslash (\) as delimiter between keys and values.
CoD5 uses backslash ( \\ ) as delimiter between keys and values.

:param br: The BinaryReader object to parse from.
:return: A dictionary containing the parsed key-value pairs.
Expand Down