diff options
author | Richard van der Hoff <richard@matrix.org> | 2017-04-24 12:34:28 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2017-04-24 12:34:28 +0100 |
commit | 1225de14d7aa5e53da51c7008046130996fdaca1 (patch) | |
tree | d51801df722991af7c034992d6d9e3df2a15926e /python | |
parent | a3e5beab8969b09ba2e17407376aab0475f6cdc7 (diff) |
PEP8
Fix line lengths in newly-added code
Diffstat (limited to 'python')
-rwxr-xr-x | python/olm/__main__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/olm/__main__.py b/python/olm/__main__.py index 5546b9e..ce9c48b 100755 --- a/python/olm/__main__.py +++ b/python/olm/__main__.py @@ -312,7 +312,8 @@ def build_arg_parser(): ) export_inbound_group.set_defaults(func=do_export_inbound_group) - ed25519_verify = commands.add_parser("ed25519_verify", help="Verify an ed25519 signature") + ed25519_verify = commands.add_parser("ed25519_verify", + help="Verify an ed25519 signature") ed25519_verify.set_defaults(func=do_verify_ed25519_signature) return parser |