Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(templates): replace flake8 and pydocstyle with ruff #1941

Merged
merged 5 commits into from
Oct 17, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'main' into work/1461/CRAFT-2371/ruff
lengau authored Oct 17, 2024
commit bc3c396e71306f457d095d0457556d1ebb6b9bf5
3 changes: 2 additions & 1 deletion charmcraft/templates/init-django-framework/src/charm.py.j2
Original file line number Diff line number Diff line change
@@ -8,7 +8,8 @@ import logging
import typing

import ops
import paas_app_charmer.django

import paas_charm.django

logger = logging.getLogger(__name__)

3 changes: 2 additions & 1 deletion charmcraft/templates/init-fastapi-framework/src/charm.py.j2
Original file line number Diff line number Diff line change
@@ -8,7 +8,8 @@ import logging
import typing

import ops
import paas_app_charmer.fastapi

import paas_charmer.fastapi

logger = logging.getLogger(__name__)

3 changes: 2 additions & 1 deletion charmcraft/templates/init-flask-framework/src/charm.py.j2
Original file line number Diff line number Diff line change
@@ -8,7 +8,8 @@ import logging
import typing

import ops
import paas_app_charmer.flask

import paas_charm.flask

logger = logging.getLogger(__name__)

3 changes: 2 additions & 1 deletion charmcraft/templates/init-go-framework/src/charm.py.j2
Original file line number Diff line number Diff line change
@@ -8,7 +8,8 @@ import logging
import typing

import ops
import paas_app_charmer.go

import paas_charm.go

logger = logging.getLogger(__name__)

You are viewing a condensed version of this merge commit. You can view the full changes here.