Skip to content

Commit 7e36e63

Browse files
Update src/App/app.py
fixed blank string issue Co-authored-by: Copilot <[email protected]>
1 parent 0e7ca15 commit 7e36e63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/App/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
# Configure Azure package logging levels
6565
azure_packages_env = os.environ.get("AZURE_LOGGING_PACKAGES")
6666
azure_packages = (
67-
[pkg.strip() for pkg in azure_packages_env.split(',')]
67+
[pkg.strip() for pkg in azure_packages_env.split(',') if pkg.strip()]
6868
if azure_packages_env else []
6969
)
7070

0 commit comments

Comments
 (0)