Skip to content

Commit 8419545

Browse files
authored
👷 Fix GitHub Actions build docs filter paths for GitHub workflows (#738)
* 👷 Fix GitHub Actions build docs filter paths for GitHub workflows * 🎨 Update format of expression and conftest
1 parent b892504 commit 8419545

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
- pyproject.toml
3131
- mkdocs.yml
3232
- mkdocs.insiders.yml
33-
- ./github/workflows/build-docs.yml
34-
- ./github/workflows/deploy-docs.yml
33+
- .github/workflows/build-docs.yml
34+
- .github/workflows/deploy-docs.yml
3535
3636
build-docs:
3737
needs:

sqlmodel/sql/expression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def label(
153153

154154

155155
def nulls_first(
156-
column: Union[_ColumnExpressionArgument[_T], _T]
156+
column: Union[_ColumnExpressionArgument[_T], _T],
157157
) -> UnaryExpression[_T]:
158158
return sqlalchemy.nulls_first(column) # type: ignore[arg-type]
159159

sqlmodel/sql/expression.py.jinja2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def label(
151151

152152

153153
def nulls_first(
154-
column: Union[_ColumnExpressionArgument[_T], _T]
154+
column: Union[_ColumnExpressionArgument[_T], _T],
155155
) -> UnaryExpression[_T]:
156156
return sqlalchemy.nulls_first(column) # type: ignore[arg-type]
157157

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def coverage_run(*, module: str, cwd: Union[str, Path]) -> subprocess.CompletedP
5151

5252

5353
def get_testing_print_function(
54-
calls: List[List[Union[str, Dict[str, Any]]]]
54+
calls: List[List[Union[str, Dict[str, Any]]]],
5555
) -> Callable[..., Any]:
5656
def new_print(*args):
5757
data = []

0 commit comments

Comments
 (0)