FaceFusion / facefusion /cli_helper.py
ninjawick's picture
Upload 84 files
d2a2947 verified
raw
history blame contribute delete
137 Bytes
from typing import List, Any
def create_metavar(ranges : List[Any]) -> str:
return '[' + str(ranges[0]) + '-' + str(ranges[-1]) + ']'