update pre-commit (#1163)

This commit is contained in:
Shuchang Zheng
2024-11-11 01:07:01 -08:00
committed by GitHub
parent 28353aeef2
commit 9130640fc2
2 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@ default_language_version:
python: python3.11
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: check-added-large-files
args: ['--maxkb=5000']
@@ -15,7 +15,7 @@ repos:
- id: detect-private-key
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.4.4
rev: v0.7.3
hooks:
# Run the linter.
- id: ruff
@@ -37,7 +37,7 @@ repos:
- id: python-use-type-annotations
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.10.0
rev: v1.13.0
hooks:
- id: mypy
args: [--show-error-codes, --warn-unused-configs, --disallow-untyped-calls, --disallow-untyped-defs, --disallow-incomplete-defs, --check-untyped-defs, --python-version=3.11]

View File

@@ -248,7 +248,7 @@ class ActionHandler:
handler = ActionHandler._handled_action_types[action.action_type]
results = await handler(action, page, scraped_page, task, step)
actions_result.extend(results)
if not results or type(actions_result[-1]) != ActionSuccess:
if not results or not isinstance(actions_result[-1], ActionSuccess):
return actions_result
# do the teardown
@@ -1131,7 +1131,7 @@ async def chain_click(
)
sibling_action_result = await click_sibling_of_input(locator, timeout=timeout)
action_results.append(sibling_action_result)
if type(sibling_action_result) == ActionSuccess:
if isinstance(sibling_action_result, ActionSuccess):
return action_results
try: