From 2f020d80edee1b596853a91060490e2d2f04e25c Mon Sep 17 00:00:00 2001 From: Matt Watson Date: Thu, 16 Jun 2022 15:54:41 -0700 Subject: [PATCH] Allow long lines for links in docstrings --- shell/format.sh | 2 +- shell/lint.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/format.sh b/shell/format.sh index 0cdf6c799f..2eee93f956 100755 --- a/shell/format.sh +++ b/shell/format.sh @@ -13,4 +13,4 @@ for i in $(find ${targets} -name '*.py'); do fi done -flake8 --config "${base_dir}/setup.cfg" ${targets} +flake8 --config "${base_dir}/setup.cfg" --max-line-length=200 ${targets} diff --git a/shell/lint.sh b/shell/lint.sh index 5fdcb68bc1..abe0ea1a8c 100755 --- a/shell/lint.sh +++ b/shell/lint.sh @@ -9,7 +9,7 @@ if ! [ $? -eq 0 ]; then exit 1 fi -flake8 --config "${base_dir}/setup.cfg" ${targets} +flake8 --config "${base_dir}/setup.cfg" --max-line-length=200 ${targets} if ! [ $? -eq 0 ]; then echo "Please fix the code style issue." exit 1