Source code for weaviate.collections.tenants.async_

from weaviate.collections.tenants.executor import _TenantsExecutor
from weaviate.connect import executor
from weaviate.connect.v4 import ConnectionAsync


[docs] @executor.wrap("async") class _TenantsAsync(_TenantsExecutor[ConnectionAsync]): pass