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

[pre-commit.ci] pre-commit autoupdate #3053

Merged
merged 2 commits into from
Jul 23, 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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ repos:
- --exclude-files
- "_test.js$"
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.5.2"
rev: "v0.5.4"
hooks:
- id: ruff-format
- id: ruff
Expand Down
2 changes: 1 addition & 1 deletion mitxpro/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class MockResponse:
Mock requests.Response
"""

def __init__( # noqa: PLR0913
def __init__(
self,
content,
status_code=200,
Expand Down
2 changes: 1 addition & 1 deletion sheets/coupon_assign_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def add_assignment_rows(self, bulk_assignment, assignment_rows):
else:
self._unassigned_code_map[bulk_assignment.id] += 1

def add_potential_event_date( # noqa: PLR0913
def add_potential_event_date(
self, bulk_assignment_id, code, recipient_email, event_type, event_date
):
"""
Expand Down
Loading