Skip to content
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 @@ -28,7 +28,7 @@ repos:
- id: poetry-check

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

Expand Down
2 changes: 2 additions & 0 deletions pydantic_gitlab_webhooks/_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@

class _TimestampedMixin:
"Mixin class for resources with GitLab-style created and updated at timestamps"

created_at: Datetime
updated_at: Datetime


class _IdentifiableMixin:
"Mixin class for resources with optional numeric ids"

id: Optional[int] = None


Expand Down