Work around 'choice' is not callable error in v6
continuous-integration/drone Build is passing Details

This commit is contained in:
Lauri Võsandi 2022-12-15 06:59:48 +02:00
parent 342c6aec02
commit a1cca0363f
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
FROM python:3-alpine
RUN pip install flake8 flake8-typing-imports flake8-quotes
RUN pip install flake8==5.0.4 flake8-typing-imports flake8-quotes
ADD .flake8 /config/flake8.ini
WORKDIR /apps
ENTRYPOINT ["flake8", "--config", "/config/flake8.ini"]