Fix copybara removal of tkinter library.

PiperOrigin-RevId: 504656239
This commit is contained in:
Steve Chien 2023-01-25 14:05:51 -08:00 committed by A. Unique TensorFlower
parent 622282e034
commit ee3d349a8d
2 changed files with 1 additions and 5 deletions

View file

@ -69,10 +69,7 @@ py_library(
name = "privacy_report", name = "privacy_report",
srcs = ["privacy_report.py"], srcs = ["privacy_report.py"],
srcs_version = "PY3", srcs_version = "PY3",
deps = [ deps = [":membership_inference_attack"],
":membership_inference_attack",
"//third_party/py/tkinter", # buildcleaner: keep
],
) )
py_library( py_library(

View file

@ -12,6 +12,5 @@ py_binary(
deps = [ deps = [
"//tensorflow_privacy/privacy/privacy_tests/membership_inference_attack", "//tensorflow_privacy/privacy/privacy_tests/membership_inference_attack",
"//tensorflow_privacy/privacy/privacy_tests/membership_inference_attack:privacy_report", "//tensorflow_privacy/privacy/privacy_tests/membership_inference_attack:privacy_report",
"//third_party/py/tkinter", # buildcleaner: keep
], ],
) )