Skip to content

Commit 4f32333

Browse files
committed
Fix typing
1 parent 8674ef9 commit 4f32333

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web3/_utils/contracts.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -259,12 +259,12 @@ def encode_transaction_data(
259259
elif is_text(fn_identifier):
260260
fn_abi, fn_selector, fn_arguments = get_function_info(
261261
# type ignored b/c fn_id here is always str b/c FallbackFn is handled above
262-
fn_identifier,
262+
fn_identifier, # type: ignore
263263
w3.codec,
264264
contract_abi,
265265
fn_abi,
266266
args,
267-
kwargs, # type: ignore
267+
kwargs,
268268
)
269269
else:
270270
raise TypeError("Unsupported function identifier")

0 commit comments

Comments
 (0)