Skip to content

Commit dcba7e4

Browse files
authored
Merge pull request #496 from ClickHouse/ClickHouse/small-lint-fixes
Small lint fixes: Missing yaml space. Fixed Black's "exclude" config
2 parents 7d215b6 + 8d46114 commit dcba7e4

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/test_matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: "test_matrix"
33

4-
on: # yamllint disable-line rule:truthy
4+
on: # yamllint disable-line rule:truthy
55
pull_request:
66
branches: main
77
push:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ __pycache__/
1010
.Python
1111
env*/
1212
venv*/
13+
.venv/
1314
dbt_env/
1415
build/
1516
develop-eggs/

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
check-black:
55
@echo "--> Running black checks"
6-
@black --check --diff --exclude=venv .
6+
@black --check --diff .
77

88
check-isort:
99
@echo "--> Running isort checks"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
line-length = 100
33
skip-string-normalization = true
44
target-version = ['py310', 'py311', 'py312']
5-
exclude = '(\.eggs|\.git|\.mypy_cache|\.venv|venv|env|_build|build|build|dist|)'
5+
exclude = '(\.eggs|\.git|\.mypy_cache|\.venv|venv|env|_build|build|dist)'
66

77
[tool.isort]
88
line_length = 100

0 commit comments

Comments
 (0)