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

Ruff linting formatter #64

Merged
merged 8 commits into from
Jan 14, 2025
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
Next Next commit
Fix star-arg unpacking after a keyword argument is strongly discourag…
…ed B026
Sven Groot committed Jan 9, 2025
commit 2b7ac49141b7c69dc919c049cd0ab3081f82780e
2 changes: 1 addition & 1 deletion inertia/http.py
Original file line number Diff line number Diff line change
@@ -192,9 +192,9 @@ def __init__(
content = self.build_first_load(data)

super().__init__(
*args,
content=content,
headers=_headers,
*args,
**kwargs,
)