https://github.com/Doist/bitmapist
Revision 8e33b8d848a321100d53e2860e157043392576bb authored by Kahlil Hodgson on 05 May 2023, 00:00:31 UTC, committed by Kahlil Hodgson on 05 May 2023, 00:00:31 UTC
This has been tested in production under v4 for some time
1 parent ed5725c
Raw File
Tip revision: 8e33b8d848a321100d53e2860e157043392576bb authored by Kahlil Hodgson on 05 May 2023, 00:00:31 UTC
chore: Bump redis version restriction include v4
Tip revision: 8e33b8d
.flake8
[flake8]
# Like Black.
max-line-length = 88

extend-ignore =
    # Whitespace before ':': Incompatible with Black
    E203,
    # Line break occurred before a binary operator: Incompatible with Black, ref.: https://black.readthedocs.io/en/stable/the_black_code_style.html
    W503,
    # Line too long: Already covered by Black
    E501,
    # is too complex: declared bankrupcy.
    C901,
    # we want to use lambda sometimes
    E731
back to top