Skip to content
Open
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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v6.0.0
hooks:
- id: check-json
- id: check-toml
Expand All @@ -16,21 +16,21 @@ repos:

- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: 'v0.5.0'
rev: 'v0.15.11'
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.10.1
rev: v1.20.1
hooks:
- id: mypy
pass_filenames: true
additional_dependencies:
- types-requests

- repo: https://github.com/pre-commit/pre-commit
rev: v3.7.1
rev: v4.5.1
hooks:
- id: validate_manifest
2 changes: 1 addition & 1 deletion tap_messagebird/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def get_records(self, context: dict | None) -> Iterable[dict[str, Any]]:
# Record filtered out during post_process()
continue
record_last_received_datetime: pendulum.DateTime = cast(
pendulum.DateTime,
"pendulum.DateTime",
pendulum.parse(record[self.replication_key]),
)
# Conversations are returned in descending order, so we can stop
Expand Down
Loading