Fix > 80-column lines for flake8.

This commit is contained in:
Dan Gohman
2018-03-12 13:02:55 -07:00
parent 11eddafef8
commit 2b9229d715
2 changed files with 4 additions and 2 deletions

View File

@@ -211,7 +211,8 @@ def gen_instruction_data_impl(fmt):
if f.has_value_list:
fmt.line(n + ' { ref mut args, .. } => args,')
fmt.line('_ => panic!("No value list: {:?}", self),')
fmt.line('debug_assert!(args.is_empty(), "Value list already in use");')
fmt.line(
'debug_assert!(args.is_empty(), "Value list already in use");')
fmt.line('*args = vlist;')