Skip to content

Commit 367e574

Browse files
committed
chore: add community link
1 parent 945b307 commit 367e574

2 files changed

Lines changed: 4 additions & 12 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

331335
MIT

replane/__init__.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -58,20 +58,11 @@
5858
from .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)
6662
def __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",

0 commit comments

Comments
 (0)