Skip to content

Commit bf55f44

Browse files
committed
Fix missing dep (absl-py) for server
1 parent a62d449 commit bf55f44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mesop/server/BUILD

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
load("//build_defs:defaults.bzl", "THIRD_PARTY_PY_FLASK", "py_library")
1+
load("//build_defs:defaults.bzl", "THIRD_PARTY_PY_ABSL_PY", "THIRD_PARTY_PY_FLASK", "py_library")
22

33
package(
44
default_visibility = ["//build_defs:mesop_internal"],
@@ -11,7 +11,7 @@ py_library(
1111
"//mesop/editor",
1212
"//mesop/protos:ui_py_pb2",
1313
"//mesop/utils",
14-
] + THIRD_PARTY_PY_FLASK,
14+
] + THIRD_PARTY_PY_ABSL_PY + THIRD_PARTY_PY_FLASK,
1515
# Note: prod_server.py has a runtime dependency on
1616
# //mesop/web/src/app/prod:web_package, so you must include it
1717
# in the consuming py_binary's data attribute.

0 commit comments

Comments
 (0)