Introduce NEXT
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
@@ -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'
|
||||||
|
|||||||
Reference in New Issue
Block a user