Skip to content

Commit 867f532

Browse files
authored
fix: Ignore the type check as both functions calls are not belonging to Feast code. (feast-dev#4500)
Signed-off-by: Shuchu Han <shuchu.han@gmail.com>
1 parent c94f32f commit 867f532

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/python/feast/ui_server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def shutdown_event():
5151

5252
async_refresh()
5353

54-
ui_dir_ref = importlib_resources.files(__spec__.parent) / "ui/build/" # type: ignore[name-defined]
54+
ui_dir_ref = importlib_resources.files(__spec__.parent) / "ui/build/" # type: ignore[name-defined, arg-type]
5555
with importlib_resources.as_file(ui_dir_ref) as ui_dir:
5656
# Initialize with the projects-list.json file
5757
with ui_dir.joinpath("projects-list.json").open(mode="w") as f:

0 commit comments

Comments
 (0)