Commit b2b1103
fix: remove erroneous async keyword from sync ActorClient.default_build (#620)
## Summary
- `ActorClient.default_build` (the **sync** variant) was incorrectly
declared as `async def` — a copy-paste error from the async variant
- Calling it returned a coroutine object instead of a `BuildClient`,
making it unusable without `await` (which makes no sense on the sync
client)
- Removed the `async` keyword so it behaves as a regular synchronous
method
## Test plan
- [ ] Verify existing unit tests pass
- [ ] Verify `ActorClient(...).default_build()` returns a `BuildClient`
directly (not a coroutine)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>1 parent 00e8621 commit b2b1103
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
439 | 439 | | |
440 | 440 | | |
441 | 441 | | |
442 | | - | |
| 442 | + | |
443 | 443 | | |
444 | 444 | | |
445 | 445 | | |
| |||
0 commit comments