Merge pull request #6134 from zmhassan/small_bug1
Removing variable being reassigned
This commit is contained in:
		
						commit
						990d75b7e6
					
				| 
						 | 
					@ -31,7 +31,6 @@ def format_explanation(explanation):
 | 
				
			||||||
    for when one explanation needs to span multiple lines, e.g. when
 | 
					    for when one explanation needs to span multiple lines, e.g. when
 | 
				
			||||||
    displaying diffs.
 | 
					    displaying diffs.
 | 
				
			||||||
    """
 | 
					    """
 | 
				
			||||||
    explanation = explanation
 | 
					 | 
				
			||||||
    lines = _split_explanation(explanation)
 | 
					    lines = _split_explanation(explanation)
 | 
				
			||||||
    result = _format_lines(lines)
 | 
					    result = _format_lines(lines)
 | 
				
			||||||
    return "\n".join(result)
 | 
					    return "\n".join(result)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue