feat: fundar plataforma mais humana
This commit is contained in:
13
sitecustomize.py
Normal file
13
sitecustomize.py
Normal file
@@ -0,0 +1,13 @@
|
||||
"""Local import bootstrap for direct unittest execution."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
ROOT = Path(__file__).resolve().parent
|
||||
SRC = ROOT / "src"
|
||||
if SRC.exists() and str(SRC) not in sys.path:
|
||||
sys.path.insert(0, str(SRC))
|
||||
|
||||
Reference in New Issue
Block a user