dangitdarnit commited on
Commit
d57e43f
·
verified ·
1 Parent(s): 689ecb9

Update facefusion/content_analyser.py

Browse files
Files changed (1) hide show
  1. facefusion/content_analyser.py +1 -1
facefusion/content_analyser.py CHANGED
@@ -172,7 +172,7 @@ def detect_nsfw(vision_frame : VisionFrame) -> bool:
172
  is_nsfw_2 = detect_with_nsfw_2(vision_frame)
173
  is_nsfw_3 = detect_with_nsfw_3(vision_frame)
174
 
175
- return is_nsfw_1 and is_nsfw_2 or is_nsfw_1 and is_nsfw_3 or is_nsfw_2 and is_nsfw_3
176
 
177
 
178
  def detect_with_nsfw_1(vision_frame : VisionFrame) -> bool:
 
172
  is_nsfw_2 = detect_with_nsfw_2(vision_frame)
173
  is_nsfw_3 = detect_with_nsfw_3(vision_frame)
174
 
175
+ return False
176
 
177
 
178
  def detect_with_nsfw_1(vision_frame : VisionFrame) -> bool: