diff options
author | Aarni Koskela <akx@iki.fi> | 2023-11-22 16:01:34 +0000 |
---|---|---|
committer | Aarni Koskela <akx@iki.fi> | 2023-11-22 16:05:12 +0000 |
commit | 8fe1e195228162a4510925de05015f361efa1087 (patch) | |
tree | 29f870b4e7519b0e4352ac8907bfcce0353089e4 | |
parent | 8aa51f682c17d85f4585b9471860224568d25e95 (diff) | |
download | stable-diffusion-webui-gfx803-8fe1e195228162a4510925de05015f361efa1087.tar.gz stable-diffusion-webui-gfx803-8fe1e195228162a4510925de05015f361efa1087.tar.bz2 stable-diffusion-webui-gfx803-8fe1e195228162a4510925de05015f361efa1087.zip |
Update ruff to 0.1.6
-rw-r--r-- | .github/workflows/on_pull_request.yaml | 2 | ||||
-rw-r--r-- | pyproject.toml | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/on_pull_request.yaml b/.github/workflows/on_pull_request.yaml index 78e608ee..9e44c806 100644 --- a/.github/workflows/on_pull_request.yaml +++ b/.github/workflows/on_pull_request.yaml @@ -20,7 +20,7 @@ jobs: # not to have GHA download an (at the time of writing) 4 GB cache # of PyTorch and other dependencies. - name: Install Ruff - run: pip install ruff==0.0.272 + run: pip install ruff==0.1.6 - name: Run Ruff run: ruff . lint-js: diff --git a/pyproject.toml b/pyproject.toml index 80541a8f..d03036e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,7 @@ exclude = [ ignore = [ "E501", # Line too long + "E721", # Do not compare types, use `isinstance` "E731", # Do not assign a `lambda` expression, use a `def` "I001", # Import block is un-sorted or un-formatted |