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

Add Ruff to pre-commit config for linting and formatting #89

Merged
merged 5 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,9 @@ repos:
- id: debug-statements
- id: end-of-file-fixer
- id: trailing-whitespace

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.8
hooks:
- id: ruff-format
- id: ruff
29 changes: 20 additions & 9 deletions drf_excel/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,14 @@ def __init__(self, **kwargs):
super().__init__(**kwargs)

def init_value(self, value):

with contextlib.suppress(Exception):
if isinstance(self.drf_field, IntegerField) and type(value) != int:
if isinstance(self.drf_field, IntegerField) and type(value) is not int:
return int(value)
elif isinstance(self.drf_field, FloatField) and type(value) != float:
elif isinstance(self.drf_field, FloatField) and type(value) is not float:
return float(value)
elif isinstance(self.drf_field, DecimalField) and type(value) != Decimal:
elif (
isinstance(self.drf_field, DecimalField) and type(value) is not Decimal
):
return Decimal(value)

return value
Expand Down Expand Up @@ -129,18 +130,24 @@ def init_value(self, value):
try:
if (
isinstance(self.drf_field, DateTimeField)
and type(value) != datetime.datetime
and type(value) is not datetime.datetime
):
return self._parse_date(
value, "DATETIME_FORMAT", parse_datetime
).replace(tzinfo=None)
elif isinstance(self.drf_field, DateField) and type(value) != datetime.date:
elif (
isinstance(self.drf_field, DateField)
and type(value) is not datetime.date
):
return self._parse_date(value, "DATE_FORMAT", parse_date)
elif isinstance(self.drf_field, TimeField) and type(value) != datetime.time:
elif (
isinstance(self.drf_field, TimeField)
and type(value) is not datetime.time
):
return self._parse_date(value, "TIME_FORMAT", parse_time).replace(
tzinfo=None
)
except:
except Exception:
pass
return value

Expand All @@ -160,7 +167,11 @@ def __init__(self, list_sep, **kwargs):
super().__init__(**kwargs)

def prep_value(self) -> Any:
if len(self.value) > 0 and isinstance(self.value[0], Iterable) and not isinstance(self.value[0], str):
if (
len(self.value) > 0
and isinstance(self.value[0], Iterable)
and not isinstance(self.value[0], str)
):
# array of array; write as json
return json.dumps(self.value, ensure_ascii=False)
else:
Expand Down
4 changes: 1 addition & 3 deletions drf_excel/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ def finalize_response(self, request, response, *args, **kwargs):
Return the response with the proper content disposition and the customized
filename instead of the browser default (or lack thereof).
"""
response = super().finalize_response(
request, response, *args, **kwargs
)
response = super().finalize_response(request, response, *args, **kwargs)
if (
isinstance(response, Response)
and response.accepted_renderer.format == "xlsx"
Expand Down
10 changes: 6 additions & 4 deletions drf_excel/renderers.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,11 @@ def _flatten_serializer_keys(

def _get_label(parent_label, label_sep, obj):
if getattr(v, "label", None):
return f"{parent_label}{label_sep}{v.label}" if parent_label else str(v.label)
return (
f"{parent_label}{label_sep}{v.label}"
if parent_label
else str(v.label)
)
else:
return False

Expand Down Expand Up @@ -346,9 +350,7 @@ def _make_body(self, body, row, row_count):

if "row_color" in row:
last_letter = get_column_letter(column_count)
cell_range = self.ws[
f"A{row_count}" : f"{last_letter}{row_count}"
]
cell_range = self.ws[f"A{row_count}" : f"{last_letter}{row_count}"]
fill = PatternFill(fill_type="solid", start_color=row["row_color"])

for r in cell_range:
Expand Down