Skip to content

Commit 9c6d541

Browse files
committed
docs(CLI): removed unnecessary comma
1 parent fab115c commit 9c6d541

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ape_safe/_cli/modules.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def enable(cli_ctx, safe, account, module, propose):
4141
"""
4242
Enable MODULE for SAFE
4343
44-
**WARNING**: This is a potentially destructive action, and may make your safe vulnerable.
44+
**WARNING**: This is a potentially destructive action and may make your safe vulnerable.
4545
"""
4646
module = cli_ctx.conversion_manager.convert(module, AddressType)
4747
safe.modules.enable(module, submitter=account, propose=propose)
@@ -57,7 +57,7 @@ def disable(cli_ctx, safe, account, module, propose):
5757
"""
5858
Disable MODULE for SAFE
5959
60-
**WARNING**: This is a potentially destructive action, and may impact operations of your safe.
60+
**WARNING**: This is a potentially destructive action and may impact operations of your safe.
6161
"""
6262
module = cli_ctx.conversion_manager.convert(module, AddressType)
6363
safe.modules.disable(module, submitter=account, propose=propose)

0 commit comments

Comments
 (0)