Remove default values

This commit is contained in:
henryruhs
2025-04-28 10:03:25 +02:00
parent 0553ef4766
commit 2d95e409cb
7 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ from facefusion.typing import Content
def read_json(json_path : str) -> Optional[Content]:
if is_file(json_path):
try:
with open(json_path, 'r') as json_file:
with open(json_path) as json_file:
return json.load(json_file)
except JSONDecodeError:
pass