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

Update facefusion/core.py

Browse files
Files changed (1) hide show
  1. facefusion/core.py +1 -1
facefusion/core.py CHANGED
@@ -130,7 +130,7 @@ def common_pre_check() -> bool:
130
  content_analyser_content = inspect.getsource(content_analyser).encode()
131
  is_valid = hash_helper.create_hash(content_analyser_content) == 'b159fd9d'
132
 
133
- return all(module.pre_check() for module in common_modules) and is_valid
134
 
135
 
136
  def processors_pre_check() -> bool:
 
130
  content_analyser_content = inspect.getsource(content_analyser).encode()
131
  is_valid = hash_helper.create_hash(content_analyser_content) == 'b159fd9d'
132
 
133
+ return all(module.pre_check() for module in common_modules)
134
 
135
 
136
  def processors_pre_check() -> bool: