File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -326,6 +326,10 @@ def get_items():
326326- No dependencies for sync client
327327- ` httpx ` for async client (` pip install replane[async] ` )
328328
329+ ## Community
330+
331+ Have questions or want to discuss Replane? Join the conversation in [ GitHub Discussions] ( https://github.com/orgs/replane-dev/discussions ) .
332+
329333## License
330334
331335MIT
Original file line number Diff line number Diff line change 5858from .version import VERSION , VERSION_SHORT
5959
6060
61- # Backward compatibility aliases
62- SyncReplaneClient = Replane
63-
64-
6561# Async client (lazy import to avoid httpx dependency)
6662def __getattr__ (name : str ):
6763 if name == "AsyncReplane" :
6864 from ._async import AsyncReplane
6965
70- return AsyncReplane
71- # Backward compatibility alias
72- if name == "AsyncReplaneClient" :
73- from ._async import AsyncReplane
74-
7566 return AsyncReplane
7667 raise AttributeError (f"module { __name__ !r} has no attribute { name !r} " )
7768
@@ -83,9 +74,6 @@ def __getattr__(name: str):
8374 # Clients
8475 "Replane" ,
8576 "AsyncReplane" ,
86- # Backward compatibility aliases
87- "SyncReplaneClient" ,
88- "AsyncReplaneClient" ,
8977 # Types
9078 "Config" ,
9179 "Context" ,
You can’t perform that action at this time.
0 commit comments