thombashi / DateTimeRange

DateTimeRange is a Python library to handle a time range. e.g. check whether a time is within the time range, get the intersection of time ranges, truncate a time range, iterate through a time range, and so forth.
https://datetimerange.rtfd.io/
MIT License
106 stars 16 forks source link

tox -e lint fails for me on master #46

Closed hauntsaninja closed 1 year ago

hauntsaninja commented 1 year ago
lint: commands[3]> pylama
datetimerange/__init__.py:129:101 E501 line too long (106 > 100 characters) [pycodestyle]
datetimerange/__init__.py:876:101 E501 line too long (105 > 100 characters) [pycodestyle]

It looks like this is not run in CI https://github.com/thombashi/DateTimeRange/blob/03b2c0ecb8c8d4f3bb7dbc5b3d014bbb0c52c9ad/.github/workflows/tests.yml#L44

thombashi commented 1 year ago

Thank you for your feedback. I fixed lint errors and added a lint job to CI.