From b61fac52228c11df01f7fcd60f5e54a38318f21e Mon Sep 17 00:00:00 2001 From: Amir Ayupov Date: Mon, 17 Jul 2023 09:50:17 -0700 Subject: [PATCH] [BOLT][Utils] Add dot2html module entry point --- bolt/utils/dot2html/__main__.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 bolt/utils/dot2html/__main__.py diff --git a/bolt/utils/dot2html/__main__.py b/bolt/utils/dot2html/__main__.py new file mode 100644 index 000000000000..95f6a532225d --- /dev/null +++ b/bolt/utils/dot2html/__main__.py @@ -0,0 +1,4 @@ +import dot2html + +if __name__ == "__main__": + dot2html.main()