From 524b8ada308ca44b379bd795d3a6f20218405857 Mon Sep 17 00:00:00 2001 From: James Curtin Date: Sun, 3 Nov 2019 07:34:28 -0500 Subject: [PATCH] Fix black error --- {{cookiecutter.app_name}}/Pipfile | 2 +- {{cookiecutter.app_name}}/tests/settings.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/{{cookiecutter.app_name}}/Pipfile b/{{cookiecutter.app_name}}/Pipfile index 8060b98..90df4a9 100644 --- a/{{cookiecutter.app_name}}/Pipfile +++ b/{{cookiecutter.app_name}}/Pipfile @@ -50,7 +50,7 @@ factory-boy = "==2.12.*" pdbpp = "==0.10.2" # Lint and code style -black = "==19.3b0" +black = "==19.10b0" flake8 = "==3.7.9" flake8-blind-except = "==0.1.1" flake8-debugger = "==3.2.1" diff --git a/{{cookiecutter.app_name}}/tests/settings.py b/{{cookiecutter.app_name}}/tests/settings.py index 650229b..c1b9922 100644 --- a/{{cookiecutter.app_name}}/tests/settings.py +++ b/{{cookiecutter.app_name}}/tests/settings.py @@ -4,8 +4,8 @@ TESTING = True SQLALCHEMY_DATABASE_URI = "sqlite://" SECRET_KEY = "not-so-secret-in-tests" BCRYPT_LOG_ROUNDS = ( - 4 -) # For faster tests; needs at least 4 to avoid "ValueError: Invalid rounds" + 4 # For faster tests; needs at least 4 to avoid "ValueError: Invalid rounds" +) DEBUG_TB_ENABLED = False CACHE_TYPE = "simple" # Can be "memcached", "redis", etc. SQLALCHEMY_TRACK_MODIFICATIONS = False