Skip to content

Commit 864c51a

Browse files
committed
fix to union types
1 parent 12a196c commit 864c51a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

convex_api/tool/command/account_name_register_command.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
class AccountNameRegisterArgs(BaseArgs):
2323
command: Literal['account']
2424
account_command: Literal['register']
25-
name_address: str | int
25+
name_address: Union[str, int]
2626
name: str
27-
address: str | int
27+
address: Union[str, int]
2828

2929

3030
class AccountNameRegisterCommand(CommandBase):

0 commit comments

Comments
 (0)