Skip to content

Commit 8ee6042

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent feef19b commit 8ee6042

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/scripts/verify_version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
1010
Exits 0 on match, 1 on mismatch, 2 on usage error.
1111
"""
12+
1213
from __future__ import annotations
1314

1415
import re

tests/functional/adapter/mssql/test_reserved_keywords_schema.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,15 @@ def project_config_update(self):
3131

3232
@pytest.fixture(scope="class")
3333
def macros(self):
34-
return {
35-
"generate_schema_name.sql": """
34+
return {"generate_schema_name.sql": """
3635
{% macro generate_schema_name(custom_schema_name, node) -%}
3736
{%- if custom_schema_name -%}
3837
{{ custom_schema_name | trim }}
3938
{%- else -%}
4039
{{ target.schema }}
4140
{%- endif -%}
4241
{%- endmacro %}
43-
"""
44-
}
42+
"""}
4543

4644
@pytest.fixture(autouse=True, scope="class")
4745
def cleanup_schema(self, project):

0 commit comments

Comments
 (0)