readabilite: fix threshold feature
Awkward typo...
This commit is contained in:
		@@ -186,7 +186,7 @@ def clean_node(node, keep_threshold=None):
 | 
				
			|||||||
        # this is <html/> (or a removed element waiting for GC)
 | 
					        # this is <html/> (or a removed element waiting for GC)
 | 
				
			||||||
        return
 | 
					        return
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if keep_threshold is not None and get_score(node) <= keep_threshold:
 | 
					    if keep_threshold is not None and get_score(node) >= keep_threshold:
 | 
				
			||||||
        # high score, so keep
 | 
					        # high score, so keep
 | 
				
			||||||
        return
 | 
					        return
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user