From 251b36be0610b8d4f75379e2d02d4a3cd0347720 Mon Sep 17 00:00:00 2001 From: Anton Tetov <anton@tetov.se> Date: Wed, 28 Sep 2022 21:17:57 +0200 Subject: [PATCH] make text_msg available as textmsg --- ur_py_ctl/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ur_py_ctl/__init__.py b/ur_py_ctl/__init__.py index fe7b796..8b1f135 100644 --- a/ur_py_ctl/__init__.py +++ b/ur_py_ctl/__init__.py @@ -23,3 +23,6 @@ from .urscript_commands import set_DO # noqa: F401,E402 from .urscript_commands import set_tcp # noqa: F401,E402 from .urscript_commands import sleep # noqa: F401,E402 from .urscript_commands import text_msg # noqa: F401,E402 + +# make available under original name +textmsg = text_msg -- GitLab