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 pre-commit / ruff errors #82

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Changes from all commits
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
9 changes: 8 additions & 1 deletion django_weasyprint/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
from .views import WeasyTemplateResponseMixin, WeasyTemplateView, WeasyTemplateResponse
from .views import WeasyTemplateResponse, WeasyTemplateResponseMixin, WeasyTemplateView


__all__ = [
'WeasyTemplateResponse',
'WeasyTemplateResponseMixin',
'WeasyTemplateView',
]
1 change: 1 addition & 0 deletions django_weasyprint/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -10,6 +10,7 @@

from django_weasyprint import WeasyTemplateResponseMixin, WeasyTemplateView


logging.basicConfig(level=logging.DEBUG)


2 changes: 1 addition & 1 deletion django_weasyprint/utils.py
Original file line number Diff line number Diff line change
@@ -61,7 +61,7 @@ def django_url_fetcher(url, *args, **kwargs):
log.debug('Static file finder returned: %s', absolute_path)
if absolute_path:
log.debug('Loading static file: %s', absolute_path)
data['file_obj'] = open(absolute_path, 'rb')
data['file_obj'] = open(absolute_path, 'rb') # noqa: PTH123
data['redirected_url'] = 'file://' + absolute_path
return data

1 change: 1 addition & 0 deletions django_weasyprint/views.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import weasyprint

from django.conf import settings
from django.template.response import TemplateResponse
from django.views.generic.base import ContextMixin, TemplateResponseMixin, View