Commit d32d1b48 authored by GoatWu's avatar GoatWu
Browse files

fix: add noqa comments for necessary module imports

parent 2d823f25
...@@ -14,8 +14,8 @@ from pathlib import Path ...@@ -14,8 +14,8 @@ from pathlib import Path
module_path = str(Path(__file__).resolve().parent.parent) module_path = str(Path(__file__).resolve().parent.parent)
sys.path.append(module_path) sys.path.append(module_path)
from lightx2v.infer import init_runner from lightx2v.infer import init_runner # noqa: E402
from lightx2v.utils.envs import * from lightx2v.utils.envs import * # noqa: E402
# advance_ptq # advance_ptq
logger.add( logger.add(
......
...@@ -14,8 +14,8 @@ from pathlib import Path ...@@ -14,8 +14,8 @@ from pathlib import Path
module_path = str(Path(__file__).resolve().parent.parent) module_path = str(Path(__file__).resolve().parent.parent)
sys.path.append(module_path) sys.path.append(module_path)
from lightx2v.infer import init_runner from lightx2v.infer import init_runner # noqa: E402
from lightx2v.utils.envs import * from lightx2v.utils.envs import * # noqa: E402
# advance_ptq # advance_ptq
logger.add( logger.add(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment