diff --git a/pylintrc b/pylintrc index 5f0ae9c..0801c2a 100644 --- a/pylintrc +++ b/pylintrc @@ -283,10 +283,10 @@ max-attributes=7 max-bool-expr=5 # Maximum number of branch for function / method body. -max-branches=16 +max-branches=20 # Maximum number of locals for function / method body. -max-locals=18 +max-locals=20 # Maximum number of parents for a class (see R0901). max-parents=7 @@ -327,7 +327,7 @@ indent-after-paren=4 indent-string=' ' # Maximum number of characters on a single line. -max-line-length=100 +max-line-length=240 # Maximum number of lines in a module. max-module-lines=1000 diff --git a/src/edge_tts/communicate.py b/src/edge_tts/communicate.py index 928b3be..07c9638 100644 --- a/src/edge_tts/communicate.py +++ b/src/edge_tts/communicate.py @@ -419,7 +419,7 @@ class Communicate: "We received a binary message, but it is missing the header length." ) - # See: https://github.com/microsoft/cognitive-services-speech-sdk-js/blob/d071d11d1e9f34d6f79d0ab6114c90eecb02ba1f/src/common.speech/WebsocketMessageFormatter.ts#L46 + # See: https://github.com/microsoft/cognitive-services-speech-sdk-js/blob/d071d11/src/common.speech/WebsocketMessageFormatter.ts#L46 header_length = int.from_bytes(received.data[:2], "big") if len(received.data) < header_length + 2: raise UnexpectedResponse(