fix(dev): support safe-path lint wrappers

This commit is contained in:
Felipe Coury
2026-05-08 12:03:48 -03:00
parent 0fc3f3d4a0
commit 21c4bca6f5
3 changed files with 9 additions and 0 deletions

View File

@@ -4,6 +4,9 @@ from __future__ import annotations
import os
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parent))
from wrapper_common import (
build_final_args,

View File

@@ -4,6 +4,9 @@ from __future__ import annotations
import os
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parent))
from wrapper_common import (
build_final_args,

View File

@@ -3,8 +3,11 @@
from __future__ import annotations
from pathlib import Path
import sys
import unittest
sys.path.insert(0, str(Path(__file__).resolve().parent))
import wrapper_common