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 #585

Merged
merged 2 commits into from
Dec 28, 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: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ ci:

repos:
- repo: https://github.com/psf/black
rev: 24.8.0
rev: 24.10.0
hooks:
- id: black

- repo: https://github.com/asottile/blacken-docs
rev: 1.18.0
rev: 1.19.1
hooks:
- id: blacken-docs
args: [--line-length=120, --target-version=py310]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.1
rev: v0.8.4
hooks:
- id: ruff
args: [--fix]
3 changes: 2 additions & 1 deletion steam/ext/csgo/backpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class Sticker:
"""The sticker's scale."""
tint_id: float | None = None
"""The sticker's tint_id."""

offset_x: float = 0.0
"""The x offset of the sticker.

Expand All @@ -68,6 +68,7 @@ class Sticker:
.. versionadded:: 1.1.0
"""


@dataclass(slots=True)
class Paint:
"""Represents the pain on an item."""
Expand Down
Loading