Skip to content

Commit aeb1502

Browse files
committed
chore(scripts): fix for isort 5
1 parent 60bd3eb commit aeb1502

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

manager/scripts/check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ for cmd in flake8 isort mypy pylint; do
88
fi
99
done
1010

11-
flake8 director && isort --recursive --check director && mypy director && pylint director
11+
flake8 director && isort --check director && mypy director && pylint director

manager/scripts/format.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ done
1010

1111
# Order is important. There are a few things that black and autopep8 disagree on, and I side
1212
# with autopep8 on those.
13-
black director && autopep8 --in-place --recursive director && isort --recursive director
13+
black director && autopep8 --in-place --recursive director && isort director

orchestrator/scripts/check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ for cmd in flake8 isort mypy pylint; do
88
fi
99
done
1010

11-
flake8 orchestrator && isort --recursive --check orchestrator && mypy --strict -p orchestrator && pylint orchestrator
11+
flake8 orchestrator && isort --check orchestrator && mypy --strict -p orchestrator && pylint orchestrator

orchestrator/scripts/format.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ done
1010

1111
# Order is important. There are a few things that black and autopep8 disagree on, and I side
1212
# with autopep8 on those.
13-
black orchestrator && autopep8 --in-place --recursive orchestrator && isort --recursive orchestrator
13+
black orchestrator && autopep8 --in-place --recursive orchestrator && isort orchestrator

router/scripts/check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ for cmd in flake8 isort mypy pylint; do
88
fi
99
done
1010

11-
flake8 router && isort --recursive --check router && mypy --strict -p router && pylint router
11+
flake8 router && isort --check router && mypy --strict -p router && pylint router

router/scripts/format.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ done
1010

1111
# Order is important. There are a few things that black and autopep8 disagree on, and I side
1212
# with autopep8 on those.
13-
black router && autopep8 --in-place --recursive router && isort --recursive router
13+
black router && autopep8 --in-place --recursive router && isort router

shared/scripts/check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ for cmd in flake8 isort mypy pylint; do
88
fi
99
done
1010

11-
flake8 directorutil && isort --recursive --check directorutil && mypy directorutil && pylint directorutil
11+
flake8 directorutil && isort --check directorutil && mypy directorutil && pylint directorutil

shared/scripts/format.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ done
1010

1111
# Order is important. There are a few things that black and autopep8 disagree on, and I side
1212
# with autopep8 on those.
13-
black directorutil && autopep8 --in-place --recursive directorutil && isort --recursive directorutil
13+
black directorutil && autopep8 --in-place --recursive directorutil && isort directorutil

shell/scripts/check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ for cmd in flake8 isort mypy pylint; do
88
fi
99
done
1010

11-
flake8 shell && isort --recursive --check shell && mypy --strict -p shell && pylint shell
11+
flake8 shell && isort --check shell && mypy --strict -p shell && pylint shell

shell/scripts/format.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ done
1010

1111
# Order is important. There are a few things that black and autopep8 disagree on, and I side
1212
# with autopep8 on those.
13-
black shell && autopep8 --in-place --recursive shell && isort --recursive shell
13+
black shell && autopep8 --in-place --recursive shell && isort shell

0 commit comments

Comments
 (0)