From 79111b77d224af52bd32716882fd82c79202dfea Mon Sep 17 00:00:00 2001 From: Stas Bekman Date: Thu, 17 Sep 2020 02:52:12 -0700 Subject: [PATCH] remove deprecated flag (#7171) ``` /home/circleci/.local/lib/python3.6/site-packages/isort/main.py:915: UserWarning: W0501: The following deprecated CLI flags were used and ignored: --recursive! "W0501: The following deprecated CLI flags were used and ignored: " ``` --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9f82220e6a..9862d9c5a4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -245,7 +245,7 @@ jobs: paths: - '~/.cache/pip' - run: black --check --line-length 119 --target-version py35 examples templates tests src utils - - run: isort --check-only --recursive examples templates tests src utils + - run: isort --check-only examples templates tests src utils - run: flake8 examples templates tests src utils - run: python utils/check_repo.py check_repository_consistency: