bugfix for import local tools module failed when sys.path have been some tools module e.g. python=3.10.x

This commit is contained in:
jiaqianjing 2024-03-09 23:52:00 +08:00
parent e04b3f6d6b
commit 9d3b868464
2 changed files with 3 additions and 1 deletions

0
tools/__init__.py Normal file
View File

View File

@ -1,6 +1,8 @@
import os,shutil,sys,pdb,re
now_dir = os.getcwd()
sys.path.append(now_dir)
print(now_dir)
sys.path.insert(0, now_dir)
print(sys.path)
import json,yaml,warnings,torch
import platform
import psutil