Introduce NEXT

This commit is contained in:
henryruhs
2025-01-04 13:23:00 +01:00
parent d4fba8421f
commit efc49c367a
2 changed files with 2 additions and 2 deletions

View File

@@ -130,7 +130,7 @@ def create_directory(directory_path : str) -> bool:
def list_directory(directory_path : str) -> Optional[List[File]]: def list_directory(directory_path : str) -> Optional[List[File]]:
if is_directory(directory_path): if is_directory(directory_path):
file_paths = sorted(os.listdir(directory_path)) file_paths = sorted(os.listdir(directory_path))
files: List[File] = [] files : List[File] = []
for file_path in file_paths: for file_path in file_paths:
file_name, file_extension = os.path.splitext(file_path) file_name, file_extension = os.path.splitext(file_path)

View File

@@ -4,7 +4,7 @@ METADATA =\
{ {
'name': 'FaceFusion', 'name': 'FaceFusion',
'description': 'Industry leading face manipulation platform', 'description': 'Industry leading face manipulation platform',
'version': '3.1.2', 'version': 'NEXT',
'license': 'MIT', 'license': 'MIT',
'author': 'Henry Ruhs', 'author': 'Henry Ruhs',
'url': 'https://facefusion.io' 'url': 'https://facefusion.io'