itsHenry35 / ledu

一个用Python编写的乐读视频一键下载器~
https://itshenry35.github.io/ledu/
Apache License 2.0
5 stars 0 forks source link

refactor: convert string with anomalous backslash into a raw string #16

Closed deepsource-autofix[bot] closed 8 months ago

deepsource-autofix[bot] commented 8 months ago

Backslash is present in the literal string but is not a valid escape sequence. If it is intended to be an escape sequence, use the correct escape characters. If it is intended to be a literal backslash, it can either be replaced with with an escaped backslash \\, or you can add an r prefix to make it a "raw" string.