From 6a601725830850578f2d0b5299e23f7e90584786 Mon Sep 17 00:00:00 2001 From: enitrat Date: Mon, 9 Dec 2024 11:55:33 +0700 Subject: [PATCH] fmt --- .github/workflows/dependencies.yml | 4 +++- cairo/tests/utils/parsers.py | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index e6abd3d8..4abb1162 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -27,6 +27,7 @@ jobs:
cargo update log

+ ```log $cargo_update_log ``` @@ -81,10 +82,11 @@ jobs: BRANCH: uv-update TITLE: "chore(deps): update ethereum execution-specs" BODY: | - Automation to keep ethereum execution-specs dependency current. + Automation to keep ethereum execution-specs dependency up to date.

uv update log

+ ```log $uv_update_log ``` diff --git a/cairo/tests/utils/parsers.py b/cairo/tests/utils/parsers.py index adf6b753..f40f2ad0 100644 --- a/cairo/tests/utils/parsers.py +++ b/cairo/tests/utils/parsers.py @@ -1,9 +1,10 @@ import re from typing import Annotated, Optional, Union +from pydantic import BeforeValidator + from ethereum.base_types import U64, U256, Bytes, Bytes0, Bytes32, Uint from ethereum.cancun.fork_types import Address -from pydantic import BeforeValidator hex_pattern = re.compile(r"^(0x)?[0-9a-fA-F]+$")