Skip to content

Commit d4fb09f

Browse files
authored
chore: upgrade black to 26.1.0 (#751)
1 parent 6928203 commit d4fb09f

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/psf/black
3-
rev: 25.9.0
3+
rev: 26.1.0
44
hooks:
55
- id: black
66
- repo: https://github.com/astral-sh/ruff-pre-commit

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ dynamic = ["version"]
4444

4545
[project.optional-dependencies]
4646
ci = [
47-
"black>=25.1.0",
47+
"black>=26.1.0",
4848
"mypy>=1.19.0",
4949
"pytest>=8.4.1",
5050
"pytest-cov>=6.2.1",

tests/sql/table/test_other_without_lineage.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,8 @@ def test_drop():
1010

1111

1212
def test_drop_with_comment():
13-
assert_table_lineage_equal(
14-
"""--comment
15-
DROP TABLE IF EXISTS tab1"""
16-
)
13+
assert_table_lineage_equal("""--comment
14+
DROP TABLE IF EXISTS tab1""")
1715

1816

1917
def test_drop_view():

0 commit comments

Comments
 (0)