stas-udav / amazon_scraping

This tool is designed to automate the process of retrieving and checking delivery dates for products listed on Amazon.
0 stars 1 forks source link

requirements.txt treaten as binary file #1

Open disfinder opened 1 day ago

disfinder commented 1 day ago

Most probably due to different file format/encoding, which was set by some external format, git diff and (for example) pipenv treat this file as a binary:

git:

image

pipenv:

image

PyCharm show this as lines separator and a format:

image

While other source files are ok:

image

Usually LF and UTF-8 are defaults for a source file. Even if Python itself works fine with either LF or CRLF line separators, some external utilities aren't. Please modify the file to be consistent with the rest of the code.

stas-udav commented 13 hours ago

How to fix this, I don't see the problem on my side