Skip to content

Commit 658c7af

Browse files
chore: replace black with ruff in clean.sh
1 parent 95f39d7 commit 658c7af

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

scripts/build_config_option_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#! /bin/env python
22
import dataclasses
33
import os
4+
from collections.abc import Generator, Iterable
45
from textwrap import dedent
56
from typing import Any
6-
from collections.abc import Generator, Iterable
77

88
from isort.main import _build_arg_parser
99
from isort.settings import _DEFAULT_SETTINGS as config

scripts/clean.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
#!/usr/bin/env bash
21
set -euxo pipefail
32

43
uv run isort --profile hug isort/ tests/ scripts/
54
uv run isort --profile hug example_*/
6-
uv run black isort/ tests/ scripts/
7-
uv run black example_*/
5+
uv run ruff format isort/ tests/ scripts/
6+
uv run ruff format example_*/

0 commit comments

Comments
 (0)