Skip to content

Commit 4470f15

Browse files
committed
fix lint
1 parent b2e23e9 commit 4470f15

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/convex_wallet.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@
1515
from convex_api import ConvexAPI
1616

1717
DEFAULT_URL = 'https://convex.world'
18+
1819
COMMAND_HELP_TEXT = '''
1920
2021
create Create a new account using the provided --password. If no password auto generate one.
2122
new Same as 'create' command.
2223
info [address] Get information about an account, you can pass the account address, or the keywords or keyfile/password of the account.
23-
'''
24+
''' # noqa: E501
2425

2526
logger = logging.getLogger('convex_wallet')
2627

@@ -49,6 +50,7 @@ def load_account(args):
4950
account = ConvexAccount.import_from_mnemonic(args.keywords)
5051
return account
5152

53+
5254
def main():
5355

5456
parser = argparse.ArgumentParser(
@@ -156,5 +158,6 @@ def main():
156158
values = convex.get_account_info(address)
157159
print(json.dumps(values, sort_keys=True, indent=4))
158160

161+
159162
if __name__ == "__main__":
160163
main()

0 commit comments

Comments
 (0)