Skip to content

Commit

Permalink
Apply changes by running black
Browse files Browse the repository at this point in the history
  • Loading branch information
jieter committed Dec 23, 2024
1 parent acee21f commit 406f474
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions django_tables2/columns/linkcolumn.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def __init__(
kwargs=None,
current_app=None,
attrs=None,
**extra
**extra,
):
super().__init__(
attrs=attrs,
Expand All @@ -141,7 +141,7 @@ def __init__(
kwargs=kwargs,
current_app=current_app,
),
**extra
**extra,
)


Expand Down
2 changes: 1 addition & 1 deletion tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def MockTable(**kwargs):
prefixed_page_field="page",
prefixed_per_page_field="per_page",
prefixed_order_by_field="sort",
**kwargs
**kwargs,
)


Expand Down

0 comments on commit 406f474

Please sign in to comment.