Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Clean cairo_rs_py_patch.py #375

Merged
merged 4 commits into from
Jan 20, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add pylint disable for no-name-in-module in RelocatableValue import
  • Loading branch information
fmoletta committed Jan 3, 2023
commit 734fc0db1334ebcd5e7b67c49dd967d244875c3e
2 changes: 1 addition & 1 deletion starknet_devnet/cairo_rs_py_patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from typing import Any, Callable, Dict, List, Optional, Tuple, Type, Union, cast

import cairo_rs_py
from cairo_rs_py import RelocatableValue
from cairo_rs_py import RelocatableValue # pylint: disable = no-name-in-module
from starkware.cairo.common.cairo_function_runner import CairoFunctionRunner
from starkware.cairo.common.structs import CairoStructFactory
from starkware.cairo.lang.compiler.ast.cairo_types import (
Expand Down