OreosLab / SSRSpeedN

Unexpected line ending format found PYL-C0328
Style
Minor
2 years ago2 years old
Unexpected line ending format. There is 'CRLF' while it should be 'LF'.
16with open(
17    os.path.join(this_directory, "requirements.txt"), mode="r", encoding="utf-8"
18) as r:
19    install_requires = [i.strip() for i in r]20
21setup(
22    name="ssrspeed",
Unexpected line ending format. There is 'CRLF' while it should be 'LF'.
15
16with open(
17    os.path.join(this_directory, "requirements.txt"), mode="r", encoding="utf-8"
18) as r:19    install_requires = [i.strip() for i in r]
20
21setup(
Unexpected line ending format. There is 'CRLF' while it should be 'LF'.
11    version = re.findall(r'__version__ = "(.*?)"', v.read())[0]
12
13with open(os.path.join(this_directory, "README.md"), mode="r", encoding="utf-8") as f:
14    long_description = f.read()15
16with open(
17    os.path.join(this_directory, "requirements.txt"), mode="r", encoding="utf-8"
Unexpected line ending format. There is 'CRLF' while it should be 'LF'.
10) as v:
11    version = re.findall(r'__version__ = "(.*?)"', v.read())[0]
12
13with open(os.path.join(this_directory, "README.md"), mode="r", encoding="utf-8") as f:14    long_description = f.read()
15
16with open(
Unexpected line ending format. There is 'CRLF' while it should be 'LF'.
 8with open(
 9    os.path.join(this_directory, "ssrspeed/__init__.py"), mode="r", encoding="utf-8"
10) as v:
11    version = re.findall(r'__version__ = "(.*?)"', v.read())[0]12
13with open(os.path.join(this_directory, "README.md"), mode="r", encoding="utf-8") as f:
14    long_description = f.read()