Added more diagnostics

This commit is contained in:
Edward Donner
2024-11-19 19:11:37 -05:00
parent 58d1d488fb
commit bdf23c6e24
2 changed files with 2 additions and 2 deletions

View File

@@ -385,7 +385,7 @@ class Diagnostics:
return any(os.path.commonpath([path, sp]) == sp for sp in site_packages_paths)
# Check for potential name conflicts in the current directory and sys.path
conflict_names = ['openai.py']
conflict_names = ['openai.py', 'dotenv.py']
# Check current directory
current_dir = os.getcwd()

View File

@@ -385,7 +385,7 @@ class Diagnostics:
return any(os.path.commonpath([path, sp]) == sp for sp in site_packages_paths)
# Check for potential name conflicts in the current directory and sys.path
conflict_names = ['openai.py']
conflict_names = ['openai.py', 'dotenv.py']
# Check current directory
current_dir = os.getcwd()