Rename typing to types

This commit is contained in:
henryruhs
2025-02-05 23:19:16 +01:00
parent 997649ed4a
commit 44165eb0b7
88 changed files with 103 additions and 103 deletions

View File

@@ -1,7 +1,7 @@
from typing import Tuple
from facefusion.logger import get_package_logger
from facefusion.typing import TableContents, TableHeaders
from facefusion.types import TableContents, TableHeaders
def render_table(headers : TableHeaders, contents : TableContents) -> None: