We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Script Base
C:\Users####\MHDDoS\start.py:168: SyntaxWarning: invalid escape sequence '\d' IP = compile("(?:\d{1,3}.){3}\d{1,3}") C:\Users####\MHDDoS\start.py:169: SyntaxWarning: invalid escape sequence '\d' protocolRex = compile('"protocol":(\d+)')
IP = compile(r"(?:\d{1,3}.){3}\d{1,3}") protocolRex = compile(r'"protocol":(\d+)')
ChatGPT Solution, I tried it and it no longer gives me errors
Clarifications:
Line 168: IP = compile(r"(?:\d{1,3}.){3}\d{1,3}") Line 169: protocolRex = compile(r'"protocol":(\d+)')
That would go in Start.py
The text was updated successfully, but these errors were encountered:
MHProDev
No branches or pull requests
Which section is this feature request for?
Script Base
Is there an existing issue for this?
Is your feature request related to a problem? Please describe the problem.
C:\Users####\MHDDoS\start.py:168: SyntaxWarning: invalid escape sequence '\d'
IP = compile("(?:\d{1,3}.){3}\d{1,3}")
C:\Users####\MHDDoS\start.py:169: SyntaxWarning: invalid escape sequence '\d'
protocolRex = compile('"protocol":(\d+)')
Describe the solution you'd like
IP = compile(r"(?:\d{1,3}.){3}\d{1,3}")
protocolRex = compile(r'"protocol":(\d+)')
ChatGPT Solution, I tried it and it no longer gives me errors
Additional context
Clarifications:
Line 168:
IP = compile(r"(?:\d{1,3}.){3}\d{1,3}")
Line 169:
protocolRex = compile(r'"protocol":(\d+)')
That would go in Start.py
The text was updated successfully, but these errors were encountered: