diff --git a/mythril/interfaces/cli.py b/mythril/interfaces/cli.py index 45f8253b..a0f4e2f1 100644 --- a/mythril/interfaces/cli.py +++ b/mythril/interfaces/cli.py @@ -30,13 +30,17 @@ DISASSEMBLE_LIST = ("disassemble", "d") log = logging.getLogger(__name__) -COMMAND_LIST = ANALYZE_LIST + DISASSEMBLE_LIST + ( - "read-storage", - "leveldb-search", - "function-to-hash", - "hash-to-address", - "version", - "truffle", +COMMAND_LIST = ( + ANALYZE_LIST + + DISASSEMBLE_LIST + + ( + "read-storage", + "leveldb-search", + "function-to-hash", + "hash-to-address", + "version", + "truffle", + ) )