Skip to content

Commit

Permalink
chore(deps): update ruff and fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lengau committed Oct 24, 2023
1 parent 428ba80 commit 59ab004
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions craft_application/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,9 +408,7 @@ def _transform_project_yaml(self, yaml_data: dict[str, Any]) -> dict[str, Any]:
self._render_secrets(yaml_data)

# Perform extra, application-specific transformations.
yaml_data = self._extra_yaml_transform(yaml_data)

return yaml_data
return self._extra_yaml_transform(yaml_data)

def _expand_environment(self, yaml_data: dict[str, Any]) -> None:
"""Perform expansion of project environment variables."""
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dev = [
lint = [
"black==23.10.0",
"codespell[toml]==2.2.6",
"ruff==0.0.269",
"ruff==0.1.1",
"yamllint==1.32.0"
]
types = [
Expand Down

0 comments on commit 59ab004

Please sign in to comment.