* 👷 Fix GitHub Actions build docs filter paths for GitHub workflows
* 🎨 Update format of expression and conftest
- pyproject.toml
- mkdocs.yml
- mkdocs.insiders.yml
- - ./github/workflows/build-docs.yml
- - ./github/workflows/deploy-docs.yml
+ - .github/workflows/build-docs.yml
+ - .github/workflows/deploy-docs.yml
build-docs:
needs:
def nulls_first(
- column: Union[_ColumnExpressionArgument[_T], _T]
+ column: Union[_ColumnExpressionArgument[_T], _T],
) -> UnaryExpression[_T]:
return sqlalchemy.nulls_first(column) # type: ignore[arg-type]
def nulls_first(
- column: Union[_ColumnExpressionArgument[_T], _T]
+ column: Union[_ColumnExpressionArgument[_T], _T],
) -> UnaryExpression[_T]:
return sqlalchemy.nulls_first(column) # type: ignore[arg-type]
def get_testing_print_function(
- calls: List[List[Union[str, Dict[str, Any]]]]
+ calls: List[List[Union[str, Dict[str, Any]]]],
) -> Callable[..., Any]:
def new_print(*args):
data = []