Skip to content

Commit 87fe88d

Browse files
authored
Add missing os import
Fixes #4042
1 parent 3e29711 commit 87fe88d

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/promptflow-core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# promptflow-core package
22

3+
## Unreleased
4+
5+
### Bugs fixed
6+
7+
- Added missing `os` import in `static_web_blueprint.py` ([#4042](https://github.com/microsoft/promptflow/issues/4042)).
8+
39
## v1.18.1 (2025.6.10)
410

511
### Bugs fixed

src/promptflow-core/promptflow/core/_serving/v1/blueprint/static_web_blueprint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ---------------------------------------------------------
22
# Copyright (c) Microsoft Corporation. All rights reserved.
33
# ---------------------------------------------------------
4-
4+
import os
55
from pathlib import Path
66

77
import flask

0 commit comments

Comments
 (0)