refactor: reduce compiled cacheline

Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
This commit is contained in:
Aaron Pham
2023-11-22 02:27:42 +00:00
parent 77bd6f090a
commit 909db8c3bf
2 changed files with 9 additions and 32 deletions

View File

@@ -1,6 +1,3 @@
# fmt: off
import openllm_client as _client
def __dir__():return sorted(dir(_client))
def __getattr__(it):return getattr(_client, it)
def __dir__():import openllm_client as _client;return sorted(dir(_client))
def __getattr__(it):import openllm_client as _client;return getattr(_client, it)