refactor: delete unused code (#716)

Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com>
This commit is contained in:
Aaron Pham
2023-11-21 04:39:48 -05:00
committed by GitHub
parent a8a9f154ce
commit c33b071ee4
28 changed files with 149 additions and 957 deletions

View File

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