Skip to content

Commit fa065e1

Browse files
committed
merge back from master to sync branches
1 parent 4264c0e commit fa065e1

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

convex_api/tool/command/account_name_register_command.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
"""
66

77
from argparse import Namespace
8-
from typing import Literal
8+
from typing import (
9+
Literal,
10+
Union
11+
)
912

1013
from convex_api.tool.command.argparse_typing import (
1114
BaseArgs,

tests/intergration/tool/test_account_command.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def test_account_balance_command(convex_url: str, test_account: Account):
4545
args.url = convex_url
4646
args.name_address = test_account.address
4747
args.keyfile = None
48-
args.keytext = None
48+
args.keytext = None
4949
args.password = None
5050
args.keywords = None
5151

@@ -73,7 +73,7 @@ def test_account_info_command(convex_url: str, test_account: Account):
7373
args.url = convex_url
7474
args.name_address = test_account.address
7575
args.keyfile = None
76-
args.keytext = None
76+
args.keytext = None
7777
args.password = None
7878
args.keywords = None
7979

@@ -107,11 +107,10 @@ def test_account_name_resolve_command(convex_url: str, test_account: Account):
107107
args.url = convex_url
108108
args.name = test_account.name
109109
args.keyfile = None
110-
args.keytext = None
110+
args.keytext = None
111111
args.password = None
112112
args.keywords = None
113113

114-
115114
command = AccountNameResolveCommand()
116115
output = Output()
117116
command.execute(args, output)

tests/intergration/tool/test_query_command.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def test_query_command(convex_url: str):
1717
args.query = '(address *registry*)'
1818
args.name_address = None
1919
args.keyfile = None
20-
args.keytext = None
20+
args.keytext = None
2121
args.password = None
2222
args.keywords = None
2323

0 commit comments

Comments
 (0)